Skip to content

Commit 38ca988

Browse files
committed
chore: update nx
1 parent 9e76135 commit 38ca988

File tree

4 files changed

+289
-264
lines changed

4 files changed

+289
-264
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

migrations.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"migrations": [
3+
{
4+
"version": "15.7.0-beta.0",
5+
"description": "Split global configuration files into individual project.json files. This migration has been added automatically to the beginning of your migration set to retroactively make them work with the new version of Nx.",
6+
"cli": "nx",
7+
"implementation": "./src/migrations/update-15-7-0/split-configuration-into-project-json-files",
8+
"package": "@nrwl/workspace",
9+
"name": "15-7-0-split-configuration-into-project-json-files"
10+
},
11+
{
12+
"version": "15.7.0-beta.0",
13+
"description": "Split global configuration files (e.g., workspace.json) into individual project.json files.",
14+
"cli": "nx",
15+
"implementation": "./src/migrations/update-15-7-0/split-configuration-into-project-json-files",
16+
"package": "@nrwl/workspace",
17+
"name": "15-7-0-split-configuration-into-project-json-files"
18+
},
19+
{
20+
"cli": "nx",
21+
"version": "15.7.1-beta.0",
22+
"description": "Add node_modules to root eslint ignore",
23+
"factory": "./src/migrations/update-15-7-1/add-eslint-ignore",
24+
"package": "@nrwl/linter",
25+
"name": "add-eslint-ignore"
26+
},
27+
{
28+
"cli": "nx",
29+
"version": "15.7.0-beta.1",
30+
"description": "Install the required angular-devkit packages as we do not directly depend on them anymore",
31+
"factory": "./src/migrations/update-15-7-0/install-required-packages",
32+
"package": "@nrwl/angular",
33+
"name": "install-required-packages"
34+
}
35+
]
36+
}

package.json

Lines changed: 75 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,77 @@
11
{
2-
"name": "postprocessing",
3-
"version": "0.0.0",
4-
"license": "MIT",
5-
"scripts": {
6-
"release": "dotenv release-it --"
7-
},
8-
"private": true,
9-
"devDependencies": {
10-
"@angular-devkit/build-angular": "~15.1.5",
11-
"@angular-eslint/eslint-plugin": "~15.2.0",
12-
"@angular-eslint/eslint-plugin-template": "~15.2.0",
13-
"@angular-eslint/template-parser": "~15.2.0",
14-
"@angular/cli": "~15.1.5",
15-
"@angular/compiler-cli": "~15.1.4",
16-
"@angular/language-service": "~15.1.4",
17-
"@nrwl/angular": "^15.6.3",
18-
"@nrwl/devkit": "15.6.3",
19-
"@nrwl/eslint-plugin-nx": "15.6.3",
20-
"@nrwl/jest": "15.6.3",
21-
"@nrwl/js": "15.6.3",
22-
"@nrwl/linter": "15.6.3",
23-
"@nrwl/nx-plugin": "^15.6.3",
24-
"@nrwl/workspace": "15.6.3",
25-
"@release-it/bumper": "^4.0.2",
26-
"@release-it/conventional-changelog": "^5.1.1",
27-
"@swc-node/register": "^1.5.6",
28-
"@swc/cli": "~0.1.61",
29-
"@swc/core": "^1.3.34",
30-
"@types/jest": "28.1.1",
31-
"@types/node": "18.13.0",
32-
"@types/three": "^0.149.0",
33-
"@typescript-eslint/eslint-plugin": "^5.51.0",
34-
"@typescript-eslint/parser": "^5.51.0",
35-
"dotenv-cli": "^7.0.0",
36-
"eslint": "~8.33.0",
37-
"eslint-config-prettier": "8.6.0",
38-
"jest": "28.1.1",
39-
"jest-environment-jsdom": "28.1.1",
40-
"jest-preset-angular": "~12.2.6",
41-
"jsonc-eslint-parser": "^2.1.0",
42-
"ng-packagr": "~15.1.1",
43-
"nx": "15.6.3",
44-
"postcss": "^8.4.21",
45-
"postcss-import": "~15.1.0",
46-
"postcss-preset-env": "~8.0.1",
47-
"postcss-url": "~10.1.3",
48-
"prettier": "^2.8.4",
49-
"prettier-plugin-organize-imports": "^3.2.2",
50-
"release-it": "^15.6.0",
51-
"ts-jest": "28.0.5",
52-
"ts-node": "10.9.1",
53-
"typescript": "~4.9.5"
54-
},
55-
"dependencies": {
56-
"@angular/animations": "~15.1.4",
57-
"@angular/common": "~15.1.4",
58-
"@angular/compiler": "~15.1.4",
59-
"@angular/core": "~15.1.4",
60-
"@angular/forms": "~15.1.4",
61-
"@angular/platform-browser": "~15.1.4",
62-
"@angular/platform-browser-dynamic": "~15.1.4",
63-
"@angular/router": "~15.1.4",
64-
"@rx-angular/state": "^1.7.0",
65-
"@swc/helpers": "~0.4.14",
66-
"angular-three": "^1.6.0",
67-
"postprocessing": "^6.29.3",
68-
"rxjs": "~7.8.0",
69-
"three": "^0.149.0",
70-
"three-stdlib": "^2.21.8",
71-
"tslib": "^2.5.0",
72-
"zone.js": "~0.12.0"
73-
}
2+
"name": "postprocessing",
3+
"version": "0.0.0",
4+
"license": "MIT",
5+
"scripts": {
6+
"release": "dotenv release-it --"
7+
},
8+
"private": true,
9+
"devDependencies": {
10+
"@angular-devkit/build-angular": "~15.1.5",
11+
"@angular-devkit/core": "~15.1.5",
12+
"@angular-devkit/schematics": "~15.1.5",
13+
"@angular-eslint/eslint-plugin": "~15.2.0",
14+
"@angular-eslint/eslint-plugin-template": "~15.2.0",
15+
"@angular-eslint/template-parser": "~15.2.0",
16+
"@angular/cli": "~15.1.5",
17+
"@angular/compiler-cli": "~15.1.4",
18+
"@angular/language-service": "~15.1.4",
19+
"@nrwl/angular": "15.7.2",
20+
"@nrwl/devkit": "15.7.2",
21+
"@nrwl/eslint-plugin-nx": "15.7.2",
22+
"@nrwl/jest": "15.7.2",
23+
"@nrwl/js": "15.7.2",
24+
"@nrwl/linter": "15.7.2",
25+
"@nrwl/nx-plugin": "15.7.2",
26+
"@nrwl/workspace": "15.7.2",
27+
"@release-it/bumper": "^4.0.2",
28+
"@release-it/conventional-changelog": "^5.1.1",
29+
"@schematics/angular": "~15.1.5",
30+
"@swc-node/register": "^1.5.6",
31+
"@swc/cli": "~0.1.61",
32+
"@swc/core": "^1.3.34",
33+
"@types/jest": "28.1.1",
34+
"@types/node": "18.13.0",
35+
"@types/three": "^0.149.0",
36+
"@typescript-eslint/eslint-plugin": "^5.51.0",
37+
"@typescript-eslint/parser": "^5.51.0",
38+
"dotenv-cli": "^7.0.0",
39+
"eslint": "~8.33.0",
40+
"eslint-config-prettier": "8.6.0",
41+
"jest": "28.1.1",
42+
"jest-environment-jsdom": "28.1.1",
43+
"jest-preset-angular": "~12.2.6",
44+
"jsonc-eslint-parser": "^2.1.0",
45+
"ng-packagr": "~15.1.1",
46+
"nx": "15.7.2",
47+
"postcss": "^8.4.21",
48+
"postcss-import": "~15.1.0",
49+
"postcss-preset-env": "~8.0.1",
50+
"postcss-url": "~10.1.3",
51+
"prettier": "^2.8.4",
52+
"prettier-plugin-organize-imports": "^3.2.2",
53+
"release-it": "^15.6.0",
54+
"ts-jest": "28.0.5",
55+
"ts-node": "10.9.1",
56+
"typescript": "~4.9.5"
57+
},
58+
"dependencies": {
59+
"@angular/animations": "~15.1.4",
60+
"@angular/common": "~15.1.4",
61+
"@angular/compiler": "~15.1.4",
62+
"@angular/core": "~15.1.4",
63+
"@angular/forms": "~15.1.4",
64+
"@angular/platform-browser": "~15.1.4",
65+
"@angular/platform-browser-dynamic": "~15.1.4",
66+
"@angular/router": "~15.1.4",
67+
"@rx-angular/state": "^1.7.0",
68+
"@swc/helpers": "~0.4.14",
69+
"angular-three": "^1.6.0",
70+
"postprocessing": "^6.29.3",
71+
"rxjs": "~7.8.0",
72+
"three": "^0.149.0",
73+
"three-stdlib": "^2.21.8",
74+
"tslib": "^2.5.0",
75+
"zone.js": "~0.12.0"
76+
}
7477
}

0 commit comments

Comments
 (0)