Skip to content

Commit c8e8dba

Browse files
committedNov 14, 2023
chore: update to 17.0.0
1 parent 4baeef6 commit c8e8dba

File tree

9 files changed

+313
-434
lines changed

9 files changed

+313
-434
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,5 @@ testem.log
3939
Thumbs.db
4040

4141
.angular
42+
43+
.nx/cache

‎.prettierignore

+2
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
/dist
33
/coverage
44
.angular
5+
6+
/.nx/cache

‎apps/angular-loaders-e2e/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222
},
2323
"lint": {
24-
"executor": "@nx/linter:eslint",
24+
"executor": "@nx/eslint:lint",
2525
"outputs": ["{options.outputFile}"],
2626
"options": {
2727
"lintFilePatterns": ["apps/angular-loaders-e2e/**/*.{js,ts}"]

‎apps/angular-loaders/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
}
6969
},
7070
"lint": {
71-
"executor": "@nx/linter:eslint",
71+
"executor": "@nx/eslint:lint",
7272
"outputs": ["{options.outputFile}"],
7373
"options": {
7474
"lintFilePatterns": [

‎libs/ng-loaders/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
}
3939
},
4040
"lint": {
41-
"executor": "@nx/linter:eslint",
41+
"executor": "@nx/eslint:lint",
4242
"outputs": ["{options.outputFile}"],
4343
"options": {
4444
"lintFilePatterns": [

‎migrations.json

+32-33
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,34 @@
11
{
2-
"migrations": [
3-
{
4-
"cli": "nx",
5-
"version": "16.8.0-beta.3",
6-
"description": "Escape $ in env variables",
7-
"implementation": "./src/migrations/update-16-8-0/escape-dollar-sign-env-variables",
8-
"package": "nx",
9-
"name": "16.8.0-escape-dollar-sign-env"
10-
},
11-
{
12-
"cli": "nx",
13-
"version": "16.8.0-beta.4",
14-
"description": "Update to Cypress v13. Most noteable change is video recording is off by default. This migration will only update if the workspace is already on Cypress v12. https://docs.cypress.io/guides/references/migration-guide#Migrating-to-Cypress-130",
15-
"implementation": "./src/migrations/update-16-8-0/cypress-13",
16-
"package": "@nx/cypress",
17-
"name": "update-16-8-0-cypress-13"
18-
},
19-
{
20-
"version": "16.8.0",
21-
"description": "update-16-8-0-add-ignored-files",
22-
"implementation": "./src/migrations/update-16-8-0-add-ignored-files/update-16-8-0-add-ignored-files",
23-
"package": "@nx/linter",
24-
"name": "update-16-8-0-add-ignored-files"
25-
},
26-
{
27-
"cli": "nx",
28-
"version": "16.8.2-beta.0",
29-
"description": "Remove invalid options (strict, noInterop) for ES6 type modules.",
30-
"factory": "./src/migrations/update-16-8-2/update-swcrc",
31-
"package": "@nx/js",
32-
"name": "16-8-2-update-swcrc"
33-
}
34-
]
2+
"migrations": [
3+
{
4+
"cli": "nx",
5+
"version": "17.0.0-beta.1",
6+
"description": "Updates the default cache directory to .nx/cache",
7+
"implementation": "./src/migrations/update-17-0-0/move-cache-directory",
8+
"package": "nx",
9+
"name": "17.0.0-move-cache-directory"
10+
},
11+
{
12+
"cli": "nx",
13+
"version": "17.0.0-beta.3",
14+
"description": "Use minimal config for tasksRunnerOptions",
15+
"implementation": "./src/migrations/update-17-0-0/use-minimal-config-for-tasks-runner-options",
16+
"package": "nx",
17+
"name": "17.0.0-use-minimal-config-for-tasks-runner-options"
18+
},
19+
{
20+
"version": "17.0.0-rc.1",
21+
"description": "Migration for v17.0.0-rc.1",
22+
"implementation": "./src/migrations/update-17-0-0/rm-default-collection-npm-scope",
23+
"package": "nx",
24+
"name": "rm-default-collection-npm-scope"
25+
},
26+
{
27+
"version": "17.0.0-beta.7",
28+
"description": "update-17-0-0-rename-to-eslint",
29+
"implementation": "./src/migrations/update-17-0-0-rename-to-eslint/update-17-0-0-rename-to-eslint",
30+
"package": "@nx/eslint",
31+
"name": "update-17-0-0-rename-to-eslint"
32+
}
33+
]
3534
}

‎nx.json

+10-14
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,30 @@
11
{
22
"$schema": "./node_modules/nx/schemas/nx-schema.json",
3-
"tasksRunnerOptions": {
4-
"default": {
5-
"runner": "nx-cloud",
6-
"options": {
7-
"cacheableOperations": ["build", "lint", "test", "e2e"],
8-
"accessToken": "ZjU1OWJiZjAtNjRjYy00ZWM2LThkYmYtOWVmMDcxMmJlMzEzfHJlYWQtd3JpdGU="
9-
}
10-
}
11-
},
123
"targetDefaults": {
134
"build": {
145
"dependsOn": ["^build"],
15-
"inputs": ["production", "^production"]
6+
"inputs": ["production", "^production"],
7+
"cache": true
168
},
179
"test": {
1810
"inputs": [
1911
"default",
2012
"^production",
2113
"{workspaceRoot}/jest.preset.js"
22-
]
14+
],
15+
"cache": true
2316
},
2417
"e2e": {
25-
"inputs": ["default", "^production"]
18+
"inputs": ["default", "^production"],
19+
"cache": true
2620
},
2721
"lint": {
2822
"inputs": [
2923
"default",
3024
"{workspaceRoot}/.eslintrc.json",
3125
"{workspaceRoot}/.eslintignore"
32-
]
26+
],
27+
"cache": true
3328
}
3429
},
3530
"namedInputs": {
@@ -58,5 +53,6 @@
5853
"@nx/angular:component": {
5954
"style": "scss"
6055
}
61-
}
56+
},
57+
"nxCloudAccessToken": "ZjU1OWJiZjAtNjRjYy00ZWM2LThkYmYtOWVmMDcxMmJlMzEzfHJlYWQtd3JpdGU="
6258
}

‎package-lock.json

+253-372
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+11-12
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@angular/platform-browser": "16.2.12",
2626
"@angular/platform-browser-dynamic": "16.2.12",
2727
"@angular/router": "16.2.12",
28-
"@nx/angular": "16.10.0",
28+
"@nx/angular": "17.0.0",
2929
"rxjs": "~7.8.0",
3030
"tslib": "^2.3.0",
3131
"zone.js": "~0.13.0"
@@ -40,13 +40,12 @@
4040
"@angular/cli": "~16.2.0",
4141
"@angular/compiler-cli": "16.2.12",
4242
"@angular/language-service": "16.2.12",
43-
"@nx/cypress": "16.10.0",
44-
"@nx/eslint-plugin": "16.10.0",
45-
"@nx/jest": "16.10.0",
46-
"@nx/js": "16.10.0",
47-
"@nx/linter": "16.10.0",
48-
"@nx/web": "16.10.0",
49-
"@nx/workspace": "16.10.0",
43+
"@nx/cypress": "17.0.0",
44+
"@nx/eslint-plugin": "17.0.0",
45+
"@nx/jest": "17.0.0",
46+
"@nx/js": "17.0.0",
47+
"@nx/web": "17.0.0",
48+
"@nx/workspace": "17.0.0",
5049
"@schematics/angular": "16.2.10",
5150
"@types/jest": "^29.4.0",
5251
"@types/node": "16.11.7",
@@ -55,14 +54,13 @@
5554
"autoprefixer": "^10.4.0",
5655
"cypress": "^13.0.0",
5756
"eslint": "8.46.0",
58-
"eslint-config-prettier": "8.1.0",
57+
"eslint-config-prettier": "9.0.0",
5958
"eslint-plugin-cypress": "2.15.1",
6059
"jest": "^29.4.1",
6160
"jest-environment-jsdom": "^29.4.1",
6261
"jest-preset-angular": "~13.1.0",
6362
"ng-packagr": "16.2.3",
64-
"nx": "16.10.0",
65-
"nx-cloud": "16.5.2",
63+
"nx": "17.0.0",
6664
"postcss": "^8.4.5",
6765
"postcss-import": "~14.1.0",
6866
"postcss-preset-env": "~7.5.0",
@@ -71,7 +69,8 @@
7169
"tailwindcss": "^3.0.2",
7270
"ts-jest": "^29.1.0",
7371
"ts-node": "10.9.1",
74-
"typescript": "5.1.6"
72+
"typescript": "5.1.6",
73+
"@nx/eslint": "17.0.0"
7574
},
7675
"description": "Angular component to add CSS loaders to your application",
7776
"author": {

0 commit comments

Comments
 (0)
Please sign in to comment.