Skip to content

Commit ef23971

Browse files
authored
chore(repo): update yarn v4.4.2 (#337)
1 parent e30aa83 commit ef23971

File tree

7 files changed

+25146
-18480
lines changed

7 files changed

+25146
-18480
lines changed

.circleci/config.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ version: 2.1
22

33
orbs:
44
5+
node: circleci/[email protected]
56

67
deploy_cache: &deploy_cache
78
key: last-deploy-sha
@@ -17,7 +18,12 @@ jobs:
1718
# The "--stop-agents-after" is optional, but allows idle agents to shut down once the "e2e-ci" targets have been requested
1819
- run: npx nx-cloud start-ci-run --distribute-on="5 linux-medium-js" --stop-agents-after="e2e-ci"
1920

20-
- run: yarn install --frozen-lockfile
21+
- run:
22+
name: Enable Corepack
23+
command: sudo corepack enable
24+
25+
- node/install-packages:
26+
pkg-manager: yarn
2127
- nx/set-shas:
2228
main-branch-name: 'master'
2329
- restore_cache:

.circleci/someconfig.yml

Lines changed: 0 additions & 176 deletions
This file was deleted.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
# dependencies
99
/node_modules
10+
/.yarn
1011

1112
# IDEs and editors
1213
/.idea
@@ -40,4 +41,4 @@ testem.log
4041
Thumbs.db
4142

4243
.nx/cache
43-
.nx/workspace-data
44+
.nx/workspace-data

.yarnrc.yml

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

nx.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
{
2-
"cli": {
3-
"warnings": {
4-
"versionMismatch": false
5-
},
6-
"packageManager": "yarn",
7-
"analytics": false
8-
},
92
"generators": {
103
"@nx/angular:application": {
114
"unitTestRunner": "jest",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"workspace-generator": "nx workspace-generator"
2727
},
2828
"private": true,
29-
"packageManager": "[email protected]",
3029
"dependencies": {
3130
"@angular/animations": "18.1.0",
3231
"@angular/common": "18.1.0",
@@ -127,5 +126,6 @@
127126
"webpack": "^5.75.0",
128127
"webpack-cli": "^5.1.4",
129128
"webpack-merge": "^5.8.0"
130-
}
129+
},
130+
"packageManager": "[email protected]"
131131
}

0 commit comments

Comments
 (0)