Skip to content

Commit 8b8c782

Browse files
committed
npm i after migrations
1 parent f713aad commit 8b8c782

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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 --package-lock-only', [], {
21431+
yield (0, exec_1.exec)('npm i', [], {
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.

src/nx-migrate.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export async function migrate(
2929
}
3030
)
3131
// sometimes migrations change packages without installing them, so naivly install dependencies here again
32-
await exec('npm i --package-lock-only', [], {
32+
await exec('npm i', [], {
3333
env: {
3434
...process.env,
3535
npm_config_legacy_peer_deps: String(legacyPeerDeps)

0 commit comments

Comments
 (0)