Skip to content

Commit c385754

Browse files
authored
fix(v8/publish): Ensure all packages are tagged with v8 on when publishing to NPM (#19974)
This adds a missing `"tag": "v8"` entry to the package.json of various packages on the `v8` branch. Not sure why we missed so many packages in the aftermath of the v9 release (#15358) but this just broke installs for a lot of packages. ref #19972
1 parent 2f34fb0 commit c385754

File tree

9 files changed

+18
-9
lines changed

9 files changed

+18
-9
lines changed

packages/aws-serverless/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@
6161
}
6262
},
6363
"publishConfig": {
64-
"access": "public"
64+
"access": "public",
65+
"tag": "v8"
6566
},
6667
"dependencies": {
6768
"@opentelemetry/api": "^1.9.0",

packages/browser-utils/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
}
3737
},
3838
"publishConfig": {
39-
"access": "public"
39+
"access": "public",
40+
"tag": "v8"
4041
},
4142
"dependencies": {
4243
"@sentry/core": "8.55.1"

packages/cloudflare/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
}
3737
},
3838
"publishConfig": {
39-
"access": "public"
39+
"access": "public",
40+
"tag": "v8"
4041
},
4142
"dependencies": {
4243
"@sentry/core": "8.55.1"

packages/google-cloud-serverless/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
}
4646
},
4747
"publishConfig": {
48-
"access": "public"
48+
"access": "public",
49+
"tag": "v8"
4950
},
5051
"dependencies": {
5152
"@sentry/core": "8.55.1",

packages/nestjs/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
}
4242
},
4343
"publishConfig": {
44-
"access": "public"
44+
"access": "public",
45+
"tag": "v8"
4546
},
4647
"dependencies": {
4748
"@sentry/core": "8.55.1",

packages/nuxt/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
}
3737
},
3838
"publishConfig": {
39-
"access": "public"
39+
"access": "public",
40+
"tag": "v8"
4041
},
4142
"peerDependencies": {
4243
"nuxt": ">=3.7.0 || 4.x"

packages/replay-internal/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
],
3131
"sideEffects": false,
3232
"publishConfig": {
33-
"access": "public"
33+
"access": "public",
34+
"tag": "v8"
3435
},
3536
"scripts": {
3637
"build": "run-p build:transpile build:types build:bundle",

packages/solid/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
}
4242
},
4343
"publishConfig": {
44-
"access": "public"
44+
"access": "public",
45+
"tag": "v8"
4546
},
4647
"dependencies": {
4748
"@sentry/browser": "8.55.1",

packages/solidstart/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
}
5555
},
5656
"publishConfig": {
57-
"access": "public"
57+
"access": "public",
58+
"tag": "v8"
5859
},
5960
"peerDependencies": {
6061
"@solidjs/router": "^0.13.4",

0 commit comments

Comments
 (0)