Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
2 changes: 1 addition & 1 deletion .github/workflows/benchmark-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.18.1'
node-version: '20.19.4'
cache: 'yarn'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.18.1'
node-version: '20.19.4'
cache: 'yarn'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/karma.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
PUPPETEER_SKIP_DOWNLOAD: 'true' # only needed for @best/runner-local, unused here
GITHUB_RUN_ID: ${{github.run_id}}
COVERAGE: '1'
NODE_VERSION: '20.18.1'
NODE_VERSION: '20.19.4'

jobs:
run-karma-tests-group-1:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.18.1'
node-version: '20.19.4'
cache: 'yarn'

# Needed for perf smoke tests, matches the chromedriver version installed by tachometer (https://github.com/google/tachometer/blob/main/README.md#on-demand-dependencies)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web-test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
SAUCE_ACCESS_KEY: ${{secrets.SAUCE_ACCESS_KEY}}
GITHUB_RUN_ID: ${{github.run_id}}
COVERAGE: '1'
NODE_VERSION: '20.18.1'
NODE_VERSION: '20.19.4'

jobs:
# Starting with the basics, just get tests running in CI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/webdriver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.18.1'
node-version: '20.19.4'
cache: 'yarn'

# Needed for local browser integration tests
Expand Down
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,45 +37,45 @@
"release:publish:canary": "nx release publish --registry https://registry.npmjs.org"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@eslint/js": "9.24.0",
"@commitlint/cli": "^19.8.1",
"@eslint/js": "9.31.0",
"@lwc/eslint-plugin-lwc-internal": "link:./scripts/eslint-plugin",
"@lwc/test-utils-lwc-internals": "link:./scripts/test-utils",
"@nx/js": "21.2.1",
"@rollup/plugin-commonjs": "^28.0.3",
"@nx/js": "21.2.3",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-typescript": "^12.1.4",
"@swc-node/register": "~1.10.10",
"@swc/core": "~1.11.21",
"@swc/core": "~1.12.14",
"@swc/helpers": "~0.5.17",
"@types/babel__core": "^7.20.5",
"@types/node": "^22.14.1",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/eslint-plugin": "^1.1.42",
"@vitest/ui": "^3.1.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.4",
"@vitest/ui": "^3.2.4",
"bytes": "^3.1.2",
"es-module-lexer": "^1.6.0",
"eslint": "9.24.0",
"es-module-lexer": "^1.7.0",
"eslint": "9.31.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.31.0",
"glob": "^11.0.1",
"globals": "^16.0.0",
"eslint-plugin-import": "^2.32.0",
"glob": "^11.0.3",
"globals": "^16.3.0",
"husky": "^9.1.7",
"isbinaryfile": "^5.0.4",
"jsdom": "^26.1.0",
"lint-staged": "^15.5.1",
"magic-string": "^0.30.17",
"nx": "21.2.1",
"prettier": "^3.5.3",
"rollup": "^4.40.0",
"terser": "^5.39.0",
"nx": "21.2.3",
"prettier": "^3.6.2",
"rollup": "^4.45.0",
"terser": "^5.43.1",
"tslib": "^2.8.1",
"typescript": "5.8.2",
"typescript-eslint": "8.29.1",
"vitest": "^3.1.1"
"typescript-eslint": "8.36.0",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{js,mjs,ts,only,skip}": "eslint --cache",
Expand All @@ -92,7 +92,7 @@
"node": ">=10"
},
"volta": {
"node": "20.18.1",
"node": "20.19.4",
"yarn": "1.22.22"
},
"resolutions": {
Expand Down
2 changes: 1 addition & 1 deletion packages/@lwc/babel-plugin-component/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
}
},
"dependencies": {
"@babel/helper-module-imports": "7.25.9",
"@babel/helper-module-imports": "7.27.1",
"@lwc/errors": "8.20.1",
"@lwc/shared": "8.20.1",
"line-column": "~1.0.2"
Expand Down
10 changes: 5 additions & 5 deletions packages/@lwc/compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@
}
},
"dependencies": {
"@babel/core": "7.26.10",
"@babel/plugin-transform-async-generator-functions": "7.26.8",
"@babel/plugin-transform-async-to-generator": "7.25.9",
"@babel/plugin-transform-class-properties": "7.25.9",
"@babel/plugin-transform-object-rest-spread": "7.25.9",
"@babel/core": "7.28.0",
"@babel/plugin-transform-async-generator-functions": "7.28.0",
"@babel/plugin-transform-async-to-generator": "7.27.1",
"@babel/plugin-transform-class-properties": "7.27.1",
"@babel/plugin-transform-object-rest-spread": "7.28.0",
"@locker/babel-plugin-transform-unforgeables": "0.22.0",
"@lwc/babel-plugin-component": "8.20.1",
"@lwc/errors": "8.20.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/@lwc/integration-karma/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@lwc/engine-server": "8.20.1",
"@lwc/rollup-plugin": "8.20.1",
"@lwc/synthetic-shadow": "8.20.1",
"@types/jasmine": "^5.1.7",
"@types/jasmine": "^5.1.8",
"chokidar": "^4.0.3",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/@lwc/integration-not-karma/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"@lwc/rollup-plugin": "8.20.1",
"@lwc/synthetic-shadow": "8.20.1",
"@types/chai": "^5.2.2",
"@types/jasmine": "^5.1.7",
"@types/jasmine": "^5.1.8",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.20.1",
"chai": "^5.2.0"
"chai": "^5.2.1"
},
"volta": {
"extends": "../../../package.json"
Expand Down
12 changes: 6 additions & 6 deletions packages/@lwc/integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
},
"devDependencies": {
"@lwc/rollup-plugin": "8.20.1",
"@wdio/cli": "^9.9.1",
"@wdio/local-runner": "^9.9.1",
"@wdio/mocha-framework": "^9.9.0",
"@wdio/sauce-service": "^9.9.1",
"@wdio/spec-reporter": "^9.9.0",
"@wdio/static-server-service": "^9.9.0",
"@wdio/cli": "^9.17.1",
"@wdio/local-runner": "^9.17.0",
"@wdio/mocha-framework": "^9.17.0",
"@wdio/sauce-service": "^9.17.0",
"@wdio/spec-reporter": "^9.17.0",
"@wdio/static-server-service": "^9.16.2",
"deepmerge": "^4.3.1",
"dotenv": "^16.5.0",
"lwc": "8.20.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/@lwc/integration-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
},
"devDependencies": {
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"rollup": "^4.40.0",
"@rollup/plugin-typescript": "^12.1.4",
"rollup": "^4.45.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/@lwc/rollup-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@lwc/compiler": "8.20.1",
"@lwc/module-resolver": "8.20.1",
"@lwc/shared": "8.20.1",
"@rollup/pluginutils": "~5.1.4"
"@rollup/pluginutils": "~5.2.0"
},
"devDependencies": {
"@lwc/errors": "8.20.1"
Expand Down
6 changes: 3 additions & 3 deletions packages/@lwc/ssr-compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@
}
},
"dependencies": {
"@babel/types": "7.27.0",
"@babel/types": "7.28.1",
"@lwc/errors": "8.20.1",
"@lwc/shared": "8.20.1",
"@lwc/template-compiler": "8.20.1",
"acorn": "8.14.1",
"acorn": "8.15.0",
"astring": "^1.9.0",
"estree-toolkit": "^1.7.12",
"estree-toolkit": "^1.7.13",
"immer": "^10.1.1",
"meriyah": "^5.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/@lwc/style-compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"dependencies": {
"@lwc/shared": "8.20.1",
"postcss": "~8.5.3",
"postcss": "~8.5.6",
"postcss-selector-parser": "~7.1.0",
"postcss-value-parser": "~4.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/@lwc/template-compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"dependencies": {
"@lwc/errors": "8.20.1",
"@lwc/shared": "8.20.1",
"acorn": "~8.14.1",
"acorn": "~8.15.0",
"astring": "~1.9.0",
"he": "~1.2.0"
},
Expand Down
4 changes: 2 additions & 2 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"devDependencies": {
"@lwc/rollup-plugin": "8.20.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-typescript": "^12.1.4",
"lwc": "8.20.1",
"rollup": "^4.40.0",
"rollup": "^4.45.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0",
"tslib": "^2.8.1"
Expand Down
Loading
Loading