Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] unpinning dep majors #338

Merged
merged 5 commits into from
Mar 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/upgrade-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ for dir in "${REPO_ROOT_DIR}/test-suite/templates/bun"/*/; do
done

for dir in "${REPO_ROOT_DIR}/test-suite/templates/nodejs-npm"/*/; do
(cd "$dir"; npm install)
(cd "$dir"; npm audit fix --force && npm install)
done

for dir in "${REPO_ROOT_DIR}/test-suite/templates/nodejs-pnpm"/*/; do
(cd "$dir"; pnpm update)
done

for dir in "${REPO_ROOT_DIR}/test-suite/templates/nodejs-yarn"/*/; do
(cd "$dir"; yarn upgrade)
(cd "$dir"; yarn upgrade || yarn install)
done

for dir in "${REPO_ROOT_DIR}/test-suite/templates/python3-poetry"/*/; do
Expand Down
Binary file modified test-suite/templates/bun/many-deps/bun.lockb
Binary file not shown.
12 changes: 6 additions & 6 deletions test-suite/templates/bun/many-deps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
"author": "",
"license": "ISC",
"dependencies": {
"enquirer": "2.4.1",
"eslint": "9.0.0",
"express": "4.21.2",
"svelte": "4.2.19",
"vite": "4.5.5",
"@codemirror/state": "6.2.1"
"enquirer": "^2.4.1",
"eslint": "^9.21.0",
"express": "^4.21.2",
"svelte": "^4.2.19",
"vite": "^4.5.9",
"@codemirror/state": "^6.5.2"
}
}
Binary file modified test-suite/templates/bun/one-dep/bun.lockb
Binary file not shown.
Loading
Loading