Skip to content

Commit 1263242

Browse files
authored
Merge pull request #25 from salesforce/node18
Upgrade to node 18
2 parents 2919038 + ce74751 commit 1263242

File tree

5 files changed

+843
-659
lines changed

5 files changed

+843
-659
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [ 16, 18 ]
9+
node: [ 18, 20 ]
1010
name: Linting on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v3

.github/workflows/prettier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [ 16, 18 ]
9+
node: [ 18, 20 ]
1010
name: Prettier on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v3

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
node: [ 16, 18 ]
9+
node: [ 18, 20 ]
1010
name: Run tests on Ubuntu with Node ${{ matrix.node }}
1111
steps:
1212
- uses: actions/checkout@v3
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: windows-latest
2121
strategy:
2222
matrix:
23-
node: [ 16, 18 ]
23+
node: [ 18, 20 ]
2424
name: Run tests on Windows with Node ${{ matrix.node }}
2525
steps:
2626
- uses: actions/checkout@v3

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@salesforce/eslint-plugin-lwc-graph-analyzer",
3-
"version": "0.7.1",
3+
"version": "0.8.0",
44
"description": "ESLint plugin to analyze data graph in a LWC component",
55
"contributors": [
66
{
@@ -41,25 +41,25 @@
4141
"!**/test/"
4242
],
4343
"devDependencies": {
44-
"@babel/eslint-parser": "7.19.1",
45-
"prettier": "^2.7.1",
46-
"jest": "^29.3.1",
47-
"jest-extended": "^3.1.0",
44+
"@babel/eslint-parser": "7.22.10",
45+
"prettier": "^3.0.2",
46+
"jest": "^29.6.3",
47+
"jest-extended": "^4.0.1",
4848
"jest-chain": "^1.1.6",
49-
"jest-junit": "^14.0.1",
49+
"jest-junit": "^16.0.0",
5050
"jest-sonar-reporter": "^2.0.0",
51-
"eslint": "^8.27.0",
51+
"eslint": "^8.47.0",
5252
"eslint-plugin-node": "^11.1.0",
53-
"eslint-plugin-eslint-plugin": "^5.0.6",
53+
"eslint-plugin-eslint-plugin": "^5.1.1",
5454
"chai": "^4.3.7"
5555
},
5656
"dependencies": {
5757
"@komaci/static-analyzer": "^242.3.7",
58-
"@lwc/metadata": "2.22.0-0",
59-
"@lwc/sfdc-compiler-utils": "2.22.0-0",
60-
"@lwc/errors": "2.22.0",
61-
"@lwc/template-compiler": "2.22.0",
62-
"@babel/core": "^7.20.2"
58+
"@lwc/metadata": "3.1.2-0",
59+
"@lwc/sfdc-compiler-utils": "3.1.2-0",
60+
"@lwc/errors": "3.1.3",
61+
"@lwc/template-compiler": "3.1.3",
62+
"@babel/core": "^7.22.10"
6363
},
6464
"scripts": {
6565
"format": "prettier --list-different \"**/*.js\"",
@@ -80,13 +80,13 @@
8080
"trailingComma": "none"
8181
},
8282
"engines": {
83-
"node": ">=16.13.0"
83+
"node": ">=18"
8484
},
8585
"peerDependencies": {
8686
"eslint": ">=7"
8787
},
8888
"volta": {
89-
"node": "16.17.1",
89+
"node": "18.17.1",
9090
"yarn": "1.22.19"
9191
}
9292
}

0 commit comments

Comments
 (0)