Skip to content
This repository has been archived by the owner on Sep 29, 2023. It is now read-only.

Commit

Permalink
Work around npm lock bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ronjouch committed Feb 9, 2020
1 parent df5ce45 commit 34ecd0c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ You can also pass nativefier flags, and mount additional volumes to provide loca
- [x] https://github.com/typescript-eslint/typescript-eslint/blob/master/docs/getting-started/linting/TYPED_LINTING.md
- [x] Make eslint happy in cli
- [x] ncp async wrapper
- [ ] Make eslint happy in app
- [ ] Stopping to webpack `app` template caused https://github.com/npm/cli/issues/757 .
- [x] Stopping to webpack `app` template caused https://github.com/npm/cli/issues/757 .
Find a workaround or revert to `webpack`ing whole app + deps into single file.
- [ ] Make eslint happy in app
- [ ] Add tests & typing
- [ ] Add coverage report and improve coverage
- [ ] Windows & macOS smoke test
Expand All @@ -172,3 +172,4 @@ You can also pass nativefier flags, and mount additional volumes to provide loca
- [ ] Move all src to src (/{cli, app})
- [ ] Produce cleaner output dir structure (output to /lib, not /lib/src)
- [ ] Measure build time improvement
- [ ] Setup automatic build of pre-release to npm @beta channel on merge
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"lint:format": "prettier --write 'src/**/*.js' 'app/src/**/*.js'",
"lint": "eslint . --ext .ts",
"list-outdated-deps": "npm out; cd app && npm out; true",
"postinstall": "cd app && npm install",
"postinstall": "cd app && npx yarn install --no-lockfile --prefer-offline --prod --no-progress --silent",
"test:integration": "jest --testRegex '.*integration-test.js'",
"test:unit": "jest",
"test:watch": "jest --watch",
Expand Down

0 comments on commit 34ecd0c

Please sign in to comment.