Skip to content

Commit

Permalink
Fix dependency script
Browse files Browse the repository at this point in the history
Should also include workspace package files.
  • Loading branch information
textbook committed Sep 14, 2024
1 parent 2eb64c1 commit cce60e2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express": "^4.21.0",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"node-pg-migrate": "^7.6.1",
"pg": "^8.12.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@testcontainers/postgresql": "^10.13.0",
"@testcontainers/postgresql": "^10.13.1",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-n": "^17.10.2",
"jest": "^29.7.0",
Expand Down
2 changes: 1 addition & 1 deletion bin/up-to-date.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ if [ -z "$(git status --porcelain)" ]; then
fi

useNpm run ship
git add package{,-lock}.json
git add "$HERE"/package{,-lock}.json "$HERE"/*/package.json
git commit --message 'Apply in-range dependency updates'
git push
2 changes: 1 addition & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"e2e": "playwright test"
},
"devDependencies": {
"@playwright/test": "^1.47.0",
"@playwright/test": "^1.47.1",
"eslint-plugin-playwright": "^1.6.2",
"playwright": "^1.40.1"
}
Expand Down
14 changes: 7 additions & 7 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.1"
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
Expand All @@ -25,18 +25,18 @@
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/eslint-plugin": "^1.1.0",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/eslint-plugin": "^1.1.4",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"eslint-plugin-react-refresh": "^0.4.12",
"eslint-plugin-testing-library": "^6.3.0",
"jsdom": "^25.0.0",
"msw": "^2.4.2",
"msw": "^2.4.6",
"undici": "^6.19.8",
"vite": "^5.4.3",
"vite": "^5.4.5",
"vitest": "^2.0.1"
}
}

0 comments on commit cce60e2

Please sign in to comment.