Skip to content

Commit fd5312b

Browse files
committed
feat: upgrade to Yarn v3
1 parent b6ef483 commit fd5312b

File tree

6 files changed

+14160
-9685
lines changed

6 files changed

+14160
-9685
lines changed

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,12 @@ testem.log
3838
.DS_Store
3939
Thumbs.db
4040

41-
/*.tgz
41+
/*.tgz
42+
43+
.pnp.*
44+
.yarn/*
45+
!.yarn/patches
46+
!.yarn/plugins
47+
!.yarn/releases
48+
!.yarn/sdks
49+
!.yarn/versions

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 546 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-3.2.0-rc.6.cjs

Lines changed: 766 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
nodeLinker: node-modules
2+
3+
plugins:
4+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5+
spec: "@yarnpkg/plugin-interactive-tools"
6+
7+
yarnPath: .yarn/releases/yarn-3.2.0-rc.6.cjs

package.json

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,43 @@
11
{
22
"name": "angular-architects",
33
"version": "0.0.0",
4+
"private": true,
45
"license": "MIT",
56
"scripts": {
6-
"commit": "git-cz",
7-
"nx": "nx",
8-
"start": "nx serve",
9-
"build": "nx build ddd",
10-
"pack": "npm pack ./dist/libs/ddd",
11-
"build:schema": "node libs/ddd/src/schematics/json-schema-to-ts.js",
12-
"test": "nx test",
13-
"lint": "nx workspace-lint && nx lint",
14-
"e2e": "nx e2e",
7+
"affected": "nx affected",
158
"affected:apps": "nx affected:apps",
16-
"affected:libs": "nx affected:libs",
179
"affected:build": "nx affected:build",
10+
"affected:dep-graph": "nx affected:dep-graph",
1811
"affected:e2e": "nx affected:e2e",
19-
"affected:test": "nx affected:test",
12+
"affected:libs": "nx affected:libs",
2013
"affected:lint": "nx affected:lint",
21-
"affected:dep-graph": "nx affected:dep-graph",
22-
"affected": "nx affected",
14+
"affected:test": "nx affected:test",
15+
"build": "nx build ddd",
16+
"build:schema": "node libs/ddd/src/schematics/json-schema-to-ts.js",
17+
"commit": "git-cz",
18+
"dep-graph": "nx dep-graph",
19+
"e2e": "nx e2e",
2320
"format": "nx format:write",
24-
"format:write": "nx format:write",
2521
"format:check": "nx format:check",
26-
"update": "nx migrate latest",
27-
"dep-graph": "nx dep-graph",
22+
"format:write": "nx format:write",
2823
"help": "nx help",
24+
"lint": "nx workspace-lint && nx lint",
25+
"nx": "nx",
26+
"pack": "npm pack ./dist/libs/ddd",
27+
"start": "nx serve",
28+
"test": "nx test",
29+
"update": "nx migrate latest",
2930
"workspace-generator": "nx workspace-generator"
3031
},
31-
"private": true,
32+
"config": {
33+
"commitizen": {
34+
"path": "./node_modules/cz-customizable"
35+
}
36+
},
3237
"dependencies": {
33-
"@schematics/angular": "^12.0.0",
34-
"@nrwl/schematics": "^12.0.0"
38+
"@schematics/angular": "^12.0.0"
3539
},
3640
"devDependencies": {
37-
"json-schema-to-typescript": "^8.1.0",
3841
"@nrwl/angular": "11.0.20",
3942
"@nrwl/cli": "11.0.20",
4043
"@nrwl/eslint-plugin-nx": "11.0.20",
@@ -46,21 +49,19 @@
4649
"@types/node": "12.12.38",
4750
"@typescript-eslint/eslint-plugin": "4.3.0",
4851
"@typescript-eslint/parser": "4.3.0",
52+
"@yarnpkg/plugin-dlx": "^3.1.1",
4953
"commitizen": "^4.2.2",
5054
"cz-customizable": "^6.3.0",
5155
"dotenv": "6.2.0",
5256
"eslint": "7.10.0",
5357
"eslint-config-prettier": "6.0.0",
5458
"jest": "26.2.2",
59+
"json-schema-to-typescript": "^8.1.0",
5560
"prettier": "2.1.2",
5661
"ts-jest": "26.4.0",
5762
"ts-node": "9.1.1",
5863
"tslint": "6.1.3",
5964
"typescript": "4.0.5"
6065
},
61-
"config": {
62-
"commitizen": {
63-
"path": "./node_modules/cz-customizable"
64-
}
65-
}
66+
"packageManager": "[email protected]"
6667
}

0 commit comments

Comments
 (0)