Skip to content

Commit ee2d3c1

Browse files
committed
All approved postinstall scripts
1 parent 187d5fe commit ee2d3c1

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

pnpm-workspace.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Require packages to be at least 7 days old before installation
2-
# This matches our dependabot cooldown config (default-days: 7)
3-
# and provides a stability buffer against compromised packages
41
minimumReleaseAge: 10080
52

6-
# Exclude prettier from the minimum age requirement since we need
7-
# to test against new releases quickly
83
minimumReleaseAgeExclude:
94
- prettier
5+
6+
onlyBuiltDependencies:
7+
- '@playwright/browser-chromium'
8+
- '@vscode/vsce-sign'
9+
- keytar

scripts/install-fixtures.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const testFixturesDir = path.join(__dirname, "..", "test-fixtures");
99
*/
1010
function getInstallCommand(packageManager) {
1111
if (!packageManager) {
12-
return "pnpm install";
12+
return "pnpm install --no-frozen-lockfile";
1313
}
1414
if (packageManager.startsWith("yarn")) {
1515
return "yarn install";
@@ -18,9 +18,9 @@ function getInstallCommand(packageManager) {
1818
return "npm install";
1919
}
2020
if (packageManager.startsWith("pnpm")) {
21-
return "pnpm install";
21+
return "pnpm install --no-frozen-lockfile";
2222
}
23-
return "pnpm install";
23+
return "pnpm install --no-frozen-lockfile";
2424
}
2525

2626
/**

0 commit comments

Comments
 (0)