Skip to content

Commit c3e2182

Browse files
authored
chore: upgrade NX and other dependencies (#17)
1 parent fa6bfa9 commit c3e2182

File tree

10 files changed

+7890
-4768
lines changed

10 files changed

+7890
-4768
lines changed

.eslintrc.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,18 @@
2424
{
2525
"files": ["*.ts", "*.tsx"],
2626
"extends": ["plugin:@nx/typescript"],
27-
"rules": {}
27+
"rules": {
28+
"@typescript-eslint/no-extra-semi": "error",
29+
"no-extra-semi": "off"
30+
}
2831
},
2932
{
3033
"files": ["*.js", "*.jsx"],
3134
"extends": ["plugin:@nx/javascript"],
32-
"rules": {}
35+
"rules": {
36+
"@typescript-eslint/no-extra-semi": "error",
37+
"no-extra-semi": "off"
38+
}
3339
}
3440
]
3541
}

.github/workflows/checks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: nrwl/nx-set-shas@v2
2121
- uses: actions/setup-node@v3
2222
with:
23-
node-version: "18.x"
23+
node-version: "20.x"
2424
cache: "npm"
2525

2626
- run: npm ci

.github/workflows/npm-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: "18.x"
14+
node-version: "20.x"
1515
registry-url: "https://registry.npmjs.org"
1616
cache: "npm"
1717

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,5 @@ testem.log
3838
.DS_Store
3939
Thumbs.db
4040

41-
.nx/cache
41+
.nx/cache
42+
.nx/workspace-data

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lts/hydrogen
1+
lts/iron

.prettierignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
/dist
44
/coverage
55

6-
/.nx/cache
6+
/.nx/cache
7+
/.nx/workspace-data

nx.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@
2424
}
2525
},
2626
"extends": "@nx/workspace/presets/core.json",
27-
"affected": {
28-
"defaultBase": "main"
29-
},
3027
"namedInputs": {
3128
"default": ["{projectRoot}/**/*", "sharedGlobals"],
3229
"sharedGlobals": [],
@@ -38,5 +35,6 @@
3835
"!{projectRoot}/jest.config.[jt]s"
3936
]
4037
},
41-
"nxCloudAccessToken": "MWJiYmY2OTUtMjQzYi00YzY3LWFjOWMtYjUxNDgzODY2MGRjfHJlYWQtd3JpdGU="
38+
"nxCloudAccessToken": "MWJiYmY2OTUtMjQzYi00YzY3LWFjOWMtYjUxNDgzODY2MGRjfHJlYWQtd3JpdGU=",
39+
"defaultBase": "main"
4240
}

0 commit comments

Comments
 (0)