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
4 changes: 3 additions & 1 deletion 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.

I think claude missed generating package-lock.json for this file?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

The root package-lock.json doesn't need updating here. The root package only installs mkcert and tsx (dev tooling), and neither of those pull in fast-uri or @babel/plugin-transform-modules-systemjs as transitive deps — only esbuild variants are in the root lock file. The overrides are applied as a safety net, but those vulnerable packages don't appear in the root dependency tree at all. All the sub-packages where these deps actually live (google-secure-signals and javascript-sdk) did have their lock files regenerated.

Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
"path-to-regexp@0": "0.1.13",
"node-forge": "^1.4.0",
"picomatch": "^2.3.2",
"flatted": "^3.4.2"
"flatted": "^3.4.2",
"@babel/plugin-transform-modules-systemjs": ">=7.29.4",
"fast-uri": ">=3.1.2"
},
"resolutions": {
"qs": "6.14.1"
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
"flatted": "^3.4.2",
"path-to-regexp@0": "0.1.13",
"node-forge": "^1.4.0",
"picomatch": "^2.3.2"
"picomatch": "^2.3.2",
"@babel/plugin-transform-modules-systemjs": ">=7.29.4",
"fast-uri": ">=3.1.2"
},
"devDependencies": {
"eslint": "^7.29.0",
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@
"flatted": "^3.4.2",
"path-to-regexp@0": "0.1.13",
"picomatch": "^2.3.2",
"lodash": "^4.18.0"
"lodash": "^4.18.0",
"@babel/plugin-transform-modules-systemjs": ">=7.29.4",
"fast-uri": ">=3.1.2"
},
"scripts": {
"start": "node server.js",
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
"flatted": "^3.4.2",
"path-to-regexp@0": "0.1.13",
"node-forge": "^1.4.0",
"picomatch": "^2.3.2"
"picomatch": "^2.3.2",
"@babel/plugin-transform-modules-systemjs": ">=7.29.4",
"fast-uri": ">=3.1.2"
},
"devDependencies": {
"eslint": "^7.29.0",
Expand Down

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

4 changes: 3 additions & 1 deletion web-integrations/javascript-sdk/client-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
"flatted": "^3.4.2",
"path-to-regexp@0": "0.1.13",
"node-forge": "^1.4.0",
"picomatch": "^2.3.2"
"picomatch": "^2.3.2",
"@babel/plugin-transform-modules-systemjs": ">=7.29.4",
"fast-uri": ">=3.1.2"
},
"resolutions": {
"jws": "4.0.1",
Expand Down
Loading
Loading