Skip to content

Commit b45d412

Browse files
committed
node version
1 parent 59683b6 commit b45d412

File tree

6 files changed

+5
-8
lines changed

6 files changed

+5
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ concurrency:
2323

2424
env:
2525
HEAD_COMMIT: ${{ github.event.inputs.commit || github.sha }}
26+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2627

2728
# WARNING: this disables cross os caching as ~ and
2829
# github.workspace evaluate to differents paths

dev-packages/e2e-tests/Dockerfile.publish-packages

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This Dockerfile exists for the purpose of using a specific node/npm version (ie. the same we use in CI) to run npm publish with
2-
ARG NODE_VERSION=18.17.1
2+
ARG NODE_VERSION=18.18.0
33
FROM node:${NODE_VERSION}
44

55
WORKDIR /sentry-javascript/dev-packages/e2e-tests

dev-packages/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"esbuild": "0.20.0"
2727
},
2828
"volta": {
29-
"node": "18.17.1",
29+
"node": "18.18.0",
3030
"yarn": "1.22.19"
3131
}
3232
}

dev-packages/rollup-utils/npmHelpers.mjs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,6 @@ export function makeBaseNPMConfig(options = {}) {
124124
}
125125

126126
export function makeNPMConfigVariants(baseConfig) {
127-
baseConfig.plugins = baseConfig.plugins || [];
128-
baseConfig.plugins.push()
129-
130127
const variantSpecificConfigs = [
131128
{ output: { format: 'cjs', dir: path.join(baseConfig.output.dir, 'cjs') } },
132129
{ output: { format: 'esm', dir: path.join(baseConfig.output.dir, 'esm') } },

dev-packages/rollup-utils/plugins/npmPlugins.mjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,11 @@ export function makeRrwebBuildPlugin({ excludeShadowDom, excludeIframe } = {}) {
136136
* Plugin that uploads bundle analysis to codecov.
137137
*/
138138
export function makeCodeCovPlugin(bundleName) {
139-
console.log(process.env.GITHUB_ACTIONS, process.env.CODECOV_TOKEN === undefined)
140139
return codecovRollupPlugin({
141140
enableBundleAnalysis: process.env.GITHUB_ACTIONS === 'true' && process.env.CODECOV_TOKEN,
142141
bundleName,
143142
uploadToken: process.env.CODECOV_TOKEN,
144-
})
143+
});
145144
}
146145

147146
export { makeExtractPolyfillsPlugin } from './extractPolyfillsPlugin.mjs';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"yalc:publish": "lerna run yalc:publish"
4242
},
4343
"volta": {
44-
"node": "18.17.0",
44+
"node": "18.18.0",
4545
"yarn": "1.22.19"
4646
},
4747
"workspaces": [

0 commit comments

Comments
 (0)