Skip to content

Commit 743e9e9

Browse files
authored
Merge pull request #129 from srleecode/19.5.6
chore: updated dependencies
2 parents 3469b6b + 5ea483d commit 743e9e9

File tree

31 files changed

+5697
-2735
lines changed

31 files changed

+5697
-2735
lines changed

.eslintrc.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,18 @@
66
{
77
"files": ["*.ts", "*.tsx"],
88
"extends": ["plugin:@nx/typescript"],
9-
"rules": {}
9+
"rules": {
10+
"@typescript-eslint/no-extra-semi": "error",
11+
"no-extra-semi": "off"
12+
}
1013
},
1114
{
1215
"files": ["*.js", "*.jsx"],
1316
"extends": ["plugin:@nx/javascript"],
14-
"rules": {}
17+
"rules": {
18+
"@typescript-eslint/no-extra-semi": "error",
19+
"no-extra-semi": "off"
20+
}
1521
}
1622
]
1723
}

.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

.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

migrations.json

+103-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,116 @@
11
{
22
"migrations": [
3+
{
4+
"version": "18.1.0-beta.3",
5+
"description": "Moves affected.defaultBase to defaultBase in `nx.json`",
6+
"implementation": "./src/migrations/update-17-2-0/move-default-base",
7+
"package": "nx",
8+
"name": "move-default-base-to-nx-json-root"
9+
},
10+
{
11+
"cli": "nx",
12+
"version": "19.2.0-beta.2",
13+
"description": "Updates the default workspace data directory to .nx/workspace-data",
14+
"implementation": "./src/migrations/update-19-2-0/move-workspace-data-directory",
15+
"package": "nx",
16+
"name": "19-2-0-move-graph-cache-directory"
17+
},
318
{
419
"cli": "nx",
5-
"version": "18.0.0-beta.2",
6-
"description": "Updates .env to disabled adding plugins when generating projects in an existing Nx workspace",
7-
"implementation": "./src/migrations/update-18-0-0/disable-crystal-for-existing-workspaces",
20+
"version": "19.2.2-beta.0",
21+
"description": "Updates the nx wrapper.",
22+
"implementation": "./src/migrations/update-17-3-0/update-nxw",
23+
"package": "nx",
24+
"name": "19-2-2-update-nx-wrapper"
25+
},
26+
{
27+
"version": "19.2.4-beta.0",
28+
"description": "Set project name in nx.json explicitly",
29+
"implementation": "./src/migrations/update-19-2-4/set-project-name",
830
"x-repair-skip": true,
931
"package": "nx",
10-
"name": "18.0.0-disable-adding-plugins-for-existing-workspaces"
32+
"name": "19-2-4-set-project-name"
33+
},
34+
{
35+
"cli": "nx",
36+
"version": "18.1.0-beta.3",
37+
"description": "Update to Cypress ^13.6.6 if the workspace is using Cypress v13 to ensure workspaces don't use v13.6.5 which has an issue when verifying Cypress.",
38+
"implementation": "./src/migrations/update-18-1-0/update-cypress-version-13-6-6",
39+
"package": "@nx/cypress",
40+
"name": "update-cypress-version-13-6-6"
41+
},
42+
{
43+
"cli": "nx",
44+
"version": "19.1.0-beta.6",
45+
"description": "Migrate no-extra-semi rules into user config, out of nx extendable configs",
46+
"implementation": "./src/migrations/update-19-1-0-migrate-no-extra-semi/migrate-no-extra-semi",
47+
"package": "@nx/eslint-plugin",
48+
"name": "update-19-1-0-rename-no-extra-semi"
49+
},
50+
{
51+
"cli": "nx",
52+
"version": "18.1.0-beta.1",
53+
"requires": { "@angular/core": ">=17.2.0" },
54+
"description": "Update the @angular/cli package version to ~17.2.0.",
55+
"factory": "./src/migrations/update-18-1-0/update-angular-cli",
56+
"package": "@nx/angular",
57+
"name": "update-angular-cli-version-17-2-0"
58+
},
59+
{
60+
"cli": "nx",
61+
"version": "18.1.1-beta.0",
62+
"description": "Ensure targetDefaults inputs for task hashing when '@nx/angular:webpack-browser' is used are correct for Module Federation.",
63+
"factory": "./src/migrations/update-18-1-1/fix-target-defaults-inputs",
64+
"package": "@nx/angular",
65+
"name": "fix-target-defaults-for-webpack-browser"
1166
},
1267
{
1368
"cli": "nx",
14-
"version": "18.0.0-beta.0",
15-
"description": "Add NX_MF_DEV_SERVER_STATIC_REMOTES to inputs for task hashing when '@nx/angular:webpack-browser' is used for Module Federation.",
16-
"factory": "./src/migrations/update-18-0-0/add-mf-env-var-to-target-defaults",
69+
"version": "18.2.0-beta.0",
70+
"requires": { "@angular/core": ">=17.3.0" },
71+
"description": "Update the @angular/cli package version to ~17.3.0.",
72+
"factory": "./src/migrations/update-18-2-0/update-angular-cli",
1773
"package": "@nx/angular",
18-
"name": "add-module-federation-env-var-to-target-defaults"
74+
"name": "update-angular-cli-version-17-3-0"
75+
},
76+
{
77+
"cli": "nx",
78+
"version": "19.1.0-beta.2",
79+
"requires": { "@angular/core": ">=18.0.0" },
80+
"description": "Update the @angular/cli package version to ~18.0.0.",
81+
"factory": "./src/migrations/update-19-1-0/update-angular-cli",
82+
"package": "@nx/angular",
83+
"name": "update-angular-cli-version-18-0-0"
84+
},
85+
{
86+
"cli": "nx",
87+
"version": "19.5.0-beta.1",
88+
"requires": { "@angular/core": ">=18.1.0" },
89+
"description": "Update the @angular/cli package version to ~18.1.0.",
90+
"factory": "./src/migrations/update-19-5-0/update-angular-cli",
91+
"package": "@nx/angular",
92+
"name": "update-angular-cli-version-18-1-0"
93+
},
94+
{
95+
"version": "18.0.0",
96+
"description": "Updates two-way bindings that have an invalid expression to use the longform expression instead.",
97+
"factory": "./migrations/invalid-two-way-bindings/bundle",
98+
"package": "@angular/core",
99+
"name": "invalid-two-way-bindings"
100+
},
101+
{
102+
"version": "18.0.0",
103+
"description": "Replace deprecated HTTP related modules with provider functions",
104+
"factory": "./migrations/http-providers/bundle",
105+
"package": "@angular/core",
106+
"name": "migration-http-providers"
107+
},
108+
{
109+
"version": "18.1.0",
110+
"description": "Updates calls to afterRender with an explicit phase to the new API",
111+
"factory": "./migrations/after-render-phase/bundle",
112+
"package": "@angular/core",
113+
"name": "migration-after-render-phase"
19114
}
20115
]
21116
}

nx.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
2-
"affected": {
3-
"defaultBase": "master"
4-
},
52
"tasksRunnerOptions": {
63
"default": {
74
"options": {
@@ -48,5 +45,6 @@
4845
]
4946
},
5047
"nxCloudAccessToken": "MmVmMjg2YWItOGRhNi00ZTljLTk2ZjQtMzUyOGNjOTIzZDE5fHJlYWQtd3JpdGU=",
51-
"parallel": 3
48+
"parallel": 3,
49+
"defaultBase": "master"
5250
}

0 commit comments

Comments
 (0)