Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 11cd312

Browse files
chore: update (testing-library#430)
1 parent 8430b27 commit 11cd312

File tree

6 files changed

+34
-49
lines changed

6 files changed

+34
-49
lines changed

‎.github/workflows/ci.yml‎

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,13 @@ jobs:
2727
runs-on: ${{ matrix.os }}
2828

2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131
- name: use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
32-
uses: actions/setup-node@v3
32+
uses: actions/setup-node@v4
3333
with:
3434
node-version: ${{ matrix.node-version }}
3535
- name: install
36-
# ng-mocks needs to add ng 17 to their peer dependencies
37-
run: npm install --force
36+
run: npm install
3837
- name: build
3938
run: npm run build -- --skip-nx-cache
4039
- name: test

‎.node-version‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
20.9

‎apps/example-app-karma/project.json‎

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,6 @@
5353
},
5454
"lint": {
5555
"executor": "@nx/eslint:lint",
56-
"options": {
57-
"lintFilePatterns": [
58-
"apps/example-app-karma/**/*.ts",
59-
"apps/example-app-karma/**/*.html",
60-
"apps/example-app-karma/src/**/*.html"
61-
]
62-
},
6356
"outputs": ["{options.outputFile}"]
6457
},
6558
"test": {

‎apps/example-app/project.json‎

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@
6060
},
6161
"lint": {
6262
"executor": "@nx/eslint:lint",
63-
"options": {
64-
"lintFilePatterns": ["apps/example-app/**/*.ts", "apps/example-app/**/*.html", "apps/example-app/src/**/*.html"]
65-
},
6663
"outputs": ["{options.outputFile}"]
6764
},
6865
"test": {

‎package.json‎

Lines changed: 30 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -28,72 +28,71 @@
2828
"prepare": "git config core.hookspath .githooks"
2929
},
3030
"dependencies": {
31-
"@angular/animations": "17.0.3",
32-
"@angular/cdk": "17.0.0",
33-
"@angular/common": "17.0.3",
34-
"@angular/compiler": "17.0.3",
35-
"@angular/core": "17.0.3",
36-
"@angular/material": "17.0.0",
37-
"@angular/platform-browser": "17.0.3",
38-
"@angular/platform-browser-dynamic": "17.0.3",
39-
"@angular/router": "17.0.3",
40-
"@ngrx/store": "17.0.0-rc.0",
41-
"@nx/angular": "17.1.1",
31+
"@angular/animations": "17.1.0",
32+
"@angular/cdk": "17.1.0",
33+
"@angular/common": "17.1.0",
34+
"@angular/compiler": "17.1.0",
35+
"@angular/core": "17.1.0",
36+
"@angular/material": "17.1.0",
37+
"@angular/platform-browser": "17.1.0",
38+
"@angular/platform-browser-dynamic": "17.1.0",
39+
"@angular/router": "17.1.0",
40+
"@ngrx/store": "17.1.0",
41+
"@nx/angular": "17.2.8",
4242
"@testing-library/dom": "^9.0.0",
4343
"rxjs": "7.8.0",
4444
"tslib": "~2.3.1",
4545
"zone.js": "0.14.2"
4646
},
4747
"devDependencies": {
48-
"@angular-devkit/build-angular": "17.0.0",
49-
"@angular-devkit/core": "17.0.0",
50-
"@angular-devkit/schematics": "17.0.0",
48+
"@angular-devkit/build-angular": "17.1.0",
49+
"@angular-devkit/core": "17.1.0",
50+
"@angular-devkit/schematics": "17.1.0",
5151
"@angular-eslint/builder": "17.0.1",
5252
"@angular-eslint/eslint-plugin": "17.0.1",
5353
"@angular-eslint/eslint-plugin-template": "17.0.1",
5454
"@angular-eslint/schematics": "17.0.1",
5555
"@angular-eslint/template-parser": "17.0.1",
56-
"@angular/cli": "~17.0.0",
57-
"@angular/compiler-cli": "17.0.3",
58-
"@angular/forms": "17.0.3",
59-
"@angular/language-service": "17.0.3",
60-
"@nx/eslint-plugin": "17.1.1",
61-
"@nx/jest": "17.1.1",
62-
"@nx/node": "17.1.1",
63-
"@nx/plugin": "17.1.1",
64-
"@nx/workspace": "17.1.1",
65-
"@schematics/angular": "17.0.0",
56+
"@angular/cli": "~17.1.0",
57+
"@angular/compiler-cli": "17.1.0",
58+
"@angular/forms": "17.1.0",
59+
"@angular/language-service": "17.1.0",
60+
"@nx/eslint-plugin": "17.2.8",
61+
"@nx/jest": "17.2.8",
62+
"@nx/node": "17.2.8",
63+
"@nx/plugin": "17.2.8",
64+
"@nx/workspace": "17.2.8",
65+
"@schematics/angular": "17.1.0",
6666
"@testing-library/jasmine-dom": "^1.2.0",
6767
"@testing-library/jest-dom": "^5.16.5",
6868
"@testing-library/user-event": "^14.4.3",
6969
"@types/jasmine": "4.3.1",
7070
"@types/jest": "29.5.1",
71-
"@types/node": "20.1.4",
71+
"@types/node": "18.16.9",
7272
"@types/testing-library__jasmine-dom": "^1.3.0",
7373
"@typescript-eslint/eslint-plugin": "6.9.1",
7474
"@typescript-eslint/parser": "6.9.1",
7575
"cpy-cli": "^3.1.1",
76-
"eslint": "8.46.0",
76+
"eslint": "8.48.0",
7777
"eslint-config-prettier": "9.0.0",
7878
"eslint-plugin-import": "~2.25.4",
7979
"eslint-plugin-jasmine": "~4.1.3",
80-
"eslint-plugin-jest": "~25.3.4",
8180
"eslint-plugin-jest-dom": "~4.0.1",
8281
"eslint-plugin-testing-library": "~5.0.1",
8382
"jasmine-core": "4.2.0",
8483
"jasmine-spec-reporter": "7.0.0",
8584
"jest": "29.5.0",
8685
"jest-environment-jsdom": "29.5.0",
87-
"jest-preset-angular": "13.1.3",
86+
"jest-preset-angular": "13.1.6",
8887
"karma": "6.4.0",
8988
"karma-chrome-launcher": "^3.1.0",
9089
"karma-coverage": "^2.2.1",
9190
"karma-jasmine": "5.1.0",
9291
"karma-jasmine-html-reporter": "2.0.0",
9392
"lint-staged": "^12.1.6",
9493
"ng-mocks": "^14.11.0",
95-
"ng-packagr": "17.0.0",
96-
"nx": "17.1.1",
94+
"ng-packagr": "17.1.0",
95+
"nx": "17.2.8",
9796
"postcss": "^8.4.5",
9897
"postcss-import": "14.1.0",
9998
"postcss-preset-env": "7.5.0",
@@ -104,6 +103,6 @@
104103
"ts-jest": "29.1.0",
105104
"ts-node": "10.9.1",
106105
"typescript": "5.2.2",
107-
"@nx/eslint": "17.1.1"
106+
"@nx/eslint": "17.2.8"
108107
}
109108
}

‎projects/testing-library/project.json‎

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@
2323
},
2424
"lint": {
2525
"executor": "@nx/eslint:lint",
26-
"options": {
27-
"lintFilePatterns": ["projects/testing-library/**/*.ts", "projects/testing-library/**/*.html"]
28-
},
2926
"outputs": ["{options.outputFile}"]
3027
},
3128
"build": {

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /