Skip to content

Commit da79533

Browse files
EricPoulErik Poul
andauthored
chore(general): update NX, dependencies, and eslint config (#537)
Co-authored-by: Erik Poul <erik.poul@mgid.com>
1 parent 5651be0 commit da79533

File tree

210 files changed

+29643
-32281
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

210 files changed

+29643
-32281
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/1-bug-report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ body:
6060
id: other
6161
attributes:
6262
label: Anything else?
63-
63+
6464
- type: dropdown
6565
id: contribute
6666
attributes:

.github/ISSUE_TEMPLATE/2-feature-request.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ body:
3939
label: Alternatives considered
4040
validations:
4141
required: true
42-
42+
4343
- type: dropdown
4444
id: contribute
4545
attributes:
@@ -48,4 +48,4 @@ body:
4848
- 'Yes'
4949
- 'No'
5050
validations:
51-
required: true
51+
required: true

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
fail-fast: true
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Cache node modules
23-
uses: actions/cache@v2
23+
uses: actions/cache@v4
2424
env:
2525
cache-name: cache-node-modules
2626
with:
@@ -30,9 +30,9 @@ jobs:
3030
${{ runner.os }}-build-${{ env.cache-name }}-
3131
${{ runner.os }}-build-
3232
${{ runner.os }}-
33-
- uses: actions/setup-node@v2
33+
- uses: actions/setup-node@v4
3434
with:
35-
node-version: '18'
35+
node-version: '22'
3636
cache: 'npm'
3737

3838
- name: Install dependencies

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v2
21-
- uses: webfactory/ssh-agent@v0.5.3
20+
- uses: actions/checkout@v4
21+
- uses: webfactory/ssh-agent@v0.9.0
2222
with:
2323
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }}
24-
- uses: actions/setup-node@v1
24+
- uses: actions/setup-node@v4
2525
with:
2626
node-version: '16.x'
2727
- name: Get yarn cache directory path
2828
id: yarn-cache-dir-path
2929
run: echo "::set-output name=dir::$(yarn cache dir)"
3030

31-
- uses: actions/cache@v2
31+
- uses: actions/cache@v4
3232
id: yarn-cache
3333
with:
3434
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,7 @@ testem.log
3838
.DS_Store
3939
Thumbs.db
4040
.angular
41-
.nx/cache
41+
.nx/cache
42+
.nx/workspace-data
43+
.cursor/rules/nx-rules.mdc
44+
.github/instructions/nx.instructions.md

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
/coverage
55
/docs/**/*.md
66

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

.prettierrc

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
{
2-
"singleQuote": true
3-
}
2+
"singleQuote": true,
3+
"overrides": [
4+
{
5+
"files": "*.component.html",
6+
"options": {
7+
"parser": "angular"
8+
}
9+
}
10+
]
11+
}

apps/ng/.eslintrc.json

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)