Skip to content

Commit

Permalink
fix: switch to yarn because of failing ci
Browse files Browse the repository at this point in the history
npm i causes issues although a _package-lock.json_ is present.
With the switch to yarn that problem does not exist anymore.
  • Loading branch information
rainerhahnekamp authored Jul 24, 2024
1 parent a62e088 commit bd8cb25
Show file tree
Hide file tree
Showing 5 changed files with 12,978 additions and 13,781 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
node-version: '18'
cache: 'npm'
- run: npm i
- run: npx yarn
- run: npm run build:all
- run: ./integration-tests.sh

40 changes: 13 additions & 27 deletions migrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,21 @@
"migrations": [
{
"cli": "nx",
"version": "19.2.0-beta.2",
"description": "Updates the default workspace data directory to .nx/workspace-data",
"implementation": "./src/migrations/update-19-2-0/move-workspace-data-directory",
"package": "nx",
"name": "19-2-0-move-graph-cache-directory"
"version": "19.5.0-beta.1",
"requires": {
"@angular/core": ">=18.1.0"
},
"description": "Update the @angular/cli package version to ~18.1.0.",
"factory": "./src/migrations/update-19-5-0/update-angular-cli",
"package": "@nx/angular",
"name": "update-angular-cli-version-18-1-0"
},
{
"cli": "nx",
"version": "19.2.2-beta.0",
"description": "Updates the nx wrapper.",
"implementation": "./src/migrations/update-17-3-0/update-nxw",
"package": "nx",
"name": "19-2-2-update-nx-wrapper"
},
{
"version": "19.2.4-beta.0",
"description": "Set project name in nx.json explicitly",
"implementation": "./src/migrations/update-19-2-4/set-project-name",
"x-repair-skip": true,
"package": "nx",
"name": "19-2-4-set-project-name"
},
{
"cli": "nx",
"version": "19.1.0-beta.6",
"description": "Migrate no-extra-semi rules into user config, out of nx extendable configs",
"implementation": "./src/migrations/update-19-1-0-migrate-no-extra-semi/migrate-no-extra-semi",
"package": "@nx/eslint-plugin",
"name": "update-19-1-0-rename-no-extra-semi"
"version": "18.1.0",
"description": "Updates calls to afterRender with an explicit phase to the new API",
"factory": "./migrations/after-render-phase/bundle",
"package": "@angular/core",
"name": "migration-after-render-phase"
}
]
}
Loading

0 comments on commit bd8cb25

Please sign in to comment.