Skip to content

Commit bd8cb25

Browse files
fix: switch to yarn because of failing ci
npm i causes issues although a _package-lock.json_ is present. With the switch to yarn that problem does not exist anymore.
1 parent a62e088 commit bd8cb25

File tree

5 files changed

+12978
-13781
lines changed

5 files changed

+12978
-13781
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
node-version: '18'
1717
cache: 'npm'
18-
- run: npm i
18+
- run: npx yarn
1919
- run: npm run build:all
2020
- run: ./integration-tests.sh
2121

migrations.json

Lines changed: 13 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,21 @@
22
"migrations": [
33
{
44
"cli": "nx",
5-
"version": "19.2.0-beta.2",
6-
"description": "Updates the default workspace data directory to .nx/workspace-data",
7-
"implementation": "./src/migrations/update-19-2-0/move-workspace-data-directory",
8-
"package": "nx",
9-
"name": "19-2-0-move-graph-cache-directory"
5+
"version": "19.5.0-beta.1",
6+
"requires": {
7+
"@angular/core": ">=18.1.0"
8+
},
9+
"description": "Update the @angular/cli package version to ~18.1.0.",
10+
"factory": "./src/migrations/update-19-5-0/update-angular-cli",
11+
"package": "@nx/angular",
12+
"name": "update-angular-cli-version-18-1-0"
1013
},
1114
{
12-
"cli": "nx",
13-
"version": "19.2.2-beta.0",
14-
"description": "Updates the nx wrapper.",
15-
"implementation": "./src/migrations/update-17-3-0/update-nxw",
16-
"package": "nx",
17-
"name": "19-2-2-update-nx-wrapper"
18-
},
19-
{
20-
"version": "19.2.4-beta.0",
21-
"description": "Set project name in nx.json explicitly",
22-
"implementation": "./src/migrations/update-19-2-4/set-project-name",
23-
"x-repair-skip": true,
24-
"package": "nx",
25-
"name": "19-2-4-set-project-name"
26-
},
27-
{
28-
"cli": "nx",
29-
"version": "19.1.0-beta.6",
30-
"description": "Migrate no-extra-semi rules into user config, out of nx extendable configs",
31-
"implementation": "./src/migrations/update-19-1-0-migrate-no-extra-semi/migrate-no-extra-semi",
32-
"package": "@nx/eslint-plugin",
33-
"name": "update-19-1-0-rename-no-extra-semi"
15+
"version": "18.1.0",
16+
"description": "Updates calls to afterRender with an explicit phase to the new API",
17+
"factory": "./migrations/after-render-phase/bundle",
18+
"package": "@angular/core",
19+
"name": "migration-after-render-phase"
3420
}
3521
]
3622
}

0 commit comments

Comments
 (0)