Skip to content

chore: upgrade yarn to v4 #1682

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ runs:

- name: Install dependencies
shell: bash
run: yarn --frozen-lockfile --no-progress --non-interactive --prefer-offline --ignore-engines
run: yarn --immutable
env:
HUSKY_SKIP_INSTALL: 'true'
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ docs/demos
/libpeerconnection.log
npm-debug.log
yarn-error.log
/.yarn/cache/
.yarn/install-state.gz
testem.log
/typings
package-lock.json
Expand Down
925 changes: 925 additions & 0 deletions .yarn/releases/yarn-4.4.1.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.4.1.cjs
4 changes: 2 additions & 2 deletions libs/cdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"rxjs": "^6.5.3 || ^7.4.0"
},
"dependencies": {
"tslib": "^2.4.1",
"ng-morph": "^4.0.3"
"ng-morph": "^4.0.3",
"tslib": "^2.4.1"
},
"schematics": "./schematics/collection.json",
"ng-add": {
Expand Down
4 changes: 2 additions & 2 deletions libs/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "@rx-angular/eslint-plugin",
"version": "2.1.0",
"peerDependencies": {
"@typescript-eslint/parser": "^6.13.2 || ^7.0.0",
"eslint": ">=8.0.0",
"typescript": ">=4.3.5",
"@typescript-eslint/parser": "^6.13.2 || ^7.0.0"
"typescript": ">=4.3.5"
},
"dependencies": {
"@typescript-eslint/utils": "^6.13.2 || ^7.0.0"
Expand Down
4 changes: 2 additions & 2 deletions libs/state/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"rxjs": "^6.5.3 || ^7.4.0"
},
"dependencies": {
"tslib": "^2.4.1",
"ng-morph": "^4.0.3"
"ng-morph": "^4.0.3",
"tslib": "^2.4.1"
},
"ng-add": {
"save": "dependencies"
Expand Down
8 changes: 4 additions & 4 deletions libs/template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
},
"peerDependencies": {
"@angular/core": "^18.0.0",
"rxjs": "^6.5.3 || ^7.4.0",
"@rx-angular/cdk": "^18.0.0"
"@rx-angular/cdk": "^18.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
},
"dependencies": {
"tslib": "^2.4.1",
"ng-morph": "^4.0.3"
"ng-morph": "^4.0.3",
"tslib": "^2.4.1"
},
"schematics": "./schematics/collection.json",
"ng-add": {
Expand Down
1 change: 0 additions & 1 deletion libs/test-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@test-helpers/rx-angular",
"version": "0.0.1",
"peerDependencies": {},
"dependencies": {
"tslib": "^2.4.1"
},
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "MIT",
"engines": {
"node": "^18.13.0 || ^20.9.0",
"yarn": "^1.22.0"
"yarn": "4.4.1"
},
"scripts": {
"nx": "nx",
Expand Down Expand Up @@ -128,5 +128,6 @@
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.4.3"
}
},
"packageManager": "yarn@4.4.1"
}
Loading
Loading