Skip to content

Commit f713aad

Browse files
committed
create package lock only after migrations
1 parent f78a373 commit f713aad

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ As I have done this mostly just to fit our needs over at [Kordis](https://github
4747
Also tests are currently rare ;)
4848
I highly appreciate any contribution.
4949
50-
Make sure to run `npm all` before pushing and to check-in the `dist` folder if you make changes in `src`.
50+
Make sure to run `npm run all` before pushing and to check-in the `dist` folder if you make changes in `src`.

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21428,7 +21428,7 @@ function migrate(keepMigrationsFile, legacyPeerDeps) {
2142821428
env: Object.assign(Object.assign({}, process.env), { npm_config_yes: 'true', npm_config_legacy_peer_deps: String(legacyPeerDeps) })
2142921429
});
2143021430
// sometimes migrations change packages without installing them, so naivly install dependencies here again
21431-
yield (0, exec_1.exec)('npm i', [], {
21431+
yield (0, exec_1.exec)('npm i --package-lock-only', [], {
2143221432
env: Object.assign(Object.assign({}, process.env), { npm_config_legacy_peer_deps: String(legacyPeerDeps) })
2143321433
});
2143421434
if (!keepMigrationsFile) {

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)