Skip to content

Commit 5b8de36

Browse files
committed
fix
1 parent 52f342e commit 5b8de36

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// "forwardPorts": [],
2121

2222
// Use 'postCreateCommand' to run commands after the container is created.
23-
"postCreateCommand": "pnpm install",
23+
"postCreateCommand": "pnpm install --frozen-lockfile",
2424

2525
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
2626
"remoteUser": "node"

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
"parser"
3131
],
3232
"scripts": {
33-
"reinstall": "rm -rf node_modules && rm -f pnpm-lock.yaml && pnpm install",
3433
"benchmark": "pnpm run ts benchmark/index.ts",
3534
"build": "pnpm run build:meta && pnpm run build:tsc",
3635
"build:meta": "pnpm run ts ./tools/update-meta.ts",
@@ -48,7 +47,7 @@
4847
"run-update-fixtures": "pnpm run ts ./tools/update-fixtures.ts",
4948
"test": "pnpm run mocha \"tests/src/**/*.ts\" --reporter dot --timeout 60000",
5049
"ts": "node --import tsx/esm",
51-
"update-fixtures": "git add package.json && pnpm i -D svelte@4 && git checkout package.json && pnpm run run-update-fixtures && pnpm i && pnpm run run-update-fixtures",
50+
"update-fixtures": "git add package.json && pnpm i -D svelte@4 && pnpm run run-update-fixtures && git checkout package.json pnpm-lock.yaml && pnpm i --frozen-lockfile && pnpm run run-update-fixtures",
5251
"version:ci": "IN_VERSION_CI_SCRIPT=true pnpm run build:meta && changeset version"
5352
},
5453
"peerDependencies": {

0 commit comments

Comments
 (0)