Compare changes
Some changes are not shown.
For a faster browsing experience, only 31 of 33 files are shown. Download one of the files below to see all changes.
.gitattributes
0 → 100644
+2
−0
.gitignore
0 → 100644
+23
−0
.gitmodules
0 → 100644
+6
−0
README.md
0 → 100644
+190
−0
package-lock.json
0 → 100644
+0
−0
File added.
Preview size limit exceeded, changes collapsed.
package.json
0 → 100644
+30
−0
| Original line number | Original line | Diff line number | Diff line |
|---|---|---|---|
{
|
|||
"name": "unit-conversion",
|
|||
"version": "1.1.0",
|
|||
"description": "An app that takes units and converts them to other units",
|
|||
"private": true,
|
|||
"license": "UNLICENSED",
|
|||
"scripts": {
|
|||
"postinstall:stylelint-config": "cd stylelint-config && npm install",
|
|||
"postinstall:eslint-config": "cd eslint-config && npm install",
|
|||
"postinstall:app": "cd unit-conversion && npm install",
|
|||
"postinstall": "run-s postinstall:**",
|
|||
"lint:app": "cd unit-conversion && npm run lint",
|
|||
"lint": "run-s --continue-on-error lint:**",
|
|||
"test-once:app": "cd unit-conversion && npm run test-once",
|
|||
"test-once": "run-s --continue-on-error test-once:**",
|
|||
"test": "run-s test-once",
|
|||
"start": "cd unit-conversion && npm run start",
|
|||
"build:app": "cd unit-conversion && npm run build",
|
|||
"build": "run-s build:**"
|
|||
},
|
|||
"devDependencies": {
|
|||
"ghooks": "^2.0.4",
|
|||
"npm-run-all": "^4.1.5"
|
|||
},
|
|||
"config": {
|
|||
"ghooks": {
|
|||
"pre-commit": "npm run lint"
|
|||
}
|
|||
}
|
|||
} |
react-redux-starter-code.code-workspace
0 → 100644
+15
−0
unit-conversion/.gitignore
0 → 100644
+23
−0
unit-conversion/package-lock.json
0 → 100644
+0
−0
File added.
Preview size limit exceeded, changes collapsed.
unit-conversion/package.json
0 → 100644
+78
−0
unit-conversion/public/index.html
0 → 100644
+20
−0
unit-conversion/public/manifest.json
0 → 100644
+18
−0
unit-conversion/public/u.svg
0 → 100644
+2
−0
unit-conversion/src/app.js
0 → 100644
+29
−0
unit-conversion/src/app/store.js
0 → 100644
+10
−0
+51
−0
+15
−0
unit-conversion/src/features/number-input-field/__snapshots__/numberInputField.test.js.snap
0 → 100644
+21
−0
+26
−0
+63
−0
+66
−0
+34
−0
unit-conversion/src/index.css
0 → 100644
+47
−0
unit-conversion/src/index.js
0 → 100644
+27
−0
unit-conversion/src/service-worker.js
0 → 100644
+75
−0
+140
−0
unit-conversion/src/setupTests.js
0 → 100644
+5
−0
unit-conversion/src/testing/mockRedux.js
0 → 100644
+11
−0