Skip to content
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"/": "If you need to regenerate the lockfile, temporarily rename this file to package.json",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this might be needed?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you need to update dependencies in pnpm, you need a package.json, otherwise it is not possible to update pnpm-lock.yml. Having _package.json will not affect current structure, it will make it easier for future upgrades.

Same pattern can be observed for bun where a _package.json exists to update lock file.

"dependencies": {
"axios": "1.11.0"
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions tools/@aws-cdk/enum-updater/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"watch": "tsc --build -w tsconfig.json"
},
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/jest": "^29.5.14",
"@types/node": "^16",
"@types/tmp": "^0.2.6",
Expand All @@ -27,7 +26,7 @@
"typescript": "~5.5.4"
},
"dependencies": {
"axios": "^1.8.3",
"axios": "^1.11.0",
"esbuild": "^0.25.0",
"extract-zip": "^2.0.1",
"tmp": "^0.2.1",
Expand Down
26 changes: 10 additions & 16 deletions tools/@aws-cdk/enum-updater/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -666,13 +666,6 @@
path-browserify "^1.0.1"
tinyglobby "^0.2.9"

"@types/axios@^0.14.4":
version "0.14.4"
resolved "https://registry.npmjs.org/@types/axios/-/axios-0.14.4.tgz"
integrity sha512-9JgOaunvQdsQ/qW2OPmE5+hCeUB52lQSolecrFrthct55QekhmXEwT203s20RL+UHtCQc15y3VXpby9E7Kkh/g==
dependencies:
axios "*"

"@types/babel__core@^7.1.14":
version "7.20.5"
resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz"
Expand Down Expand Up @@ -837,13 +830,13 @@ asynckit@^0.4.0:
resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==

axios@*, axios@^1.8.3:
version "1.8.3"
resolved "https://registry.npmjs.org/axios/-/axios-1.8.3.tgz#9ebccd71c98651d547162a018a1a95a4b4ed4de8"
integrity sha512-iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A==
axios@^1.11.0:
version "1.11.0"
resolved "https://registry.npmjs.org/axios/-/axios-1.11.0.tgz#c2ec219e35e414c025b2095e8b8280278478fdb6"
integrity sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==
dependencies:
follow-redirects "^1.15.6"
form-data "^4.0.0"
form-data "^4.0.4"
proxy-from-env "^1.1.0"

babel-jest@^29.7.0:
Expand Down Expand Up @@ -1339,14 +1332,15 @@ follow-redirects@^1.15.6:
resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz"
integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==

form-data@^4.0.0:
version "4.0.2"
resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz"
integrity sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==
form-data@^4.0.4:
version "4.0.4"
resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz#784cdcce0669a9d68e94d11ac4eea98088edd2c4"
integrity sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==
dependencies:
asynckit "^0.4.0"
combined-stream "^1.0.8"
es-set-tostringtag "^2.1.0"
hasown "^2.0.2"
mime-types "^2.1.12"

fs.realpath@^1.0.0:
Expand Down
Loading