Skip to content

Commit 47a9b6f

Browse files
Merge pull request #45 from peterbsmyth/feat/nx-11
chore(repo): upgrade to nx 11
2 parents d832f17 + 5a5c314 commit 47a9b6f

File tree

4 files changed

+33
-17
lines changed

4 files changed

+33
-17
lines changed

migrations.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"migrations": [
3+
{
4+
"version": "11.0.0-beta.4",
5+
"description": "Rename ng-update into nx-migrate",
6+
"factory": "./src/migrations/update-11-0-0/rename-ng-update-into-nx-migrate",
7+
"package": "@nrwl/nx-plugin",
8+
"name": "rename-ng-update-into-nx-migrate"
9+
}
10+
]
11+
}

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
"format:write": "nx format:write",
2525
"format:check": "nx format:check",
2626
"update": "nx migrate latest",
27-
"workspace-schematic": "nx workspace-schematic",
2827
"dep-graph": "nx dep-graph",
29-
"help": "nx help"
28+
"help": "nx help",
29+
"workspace-generator": "nx workspace-generator"
3030
},
3131
"private": true,
3232
"dependencies": {
@@ -35,15 +35,15 @@
3535
"json-schema-to-typescript": "^8.1.0"
3636
},
3737
"devDependencies": {
38-
"@nrwl/angular": "10.4.7",
39-
"@nrwl/cli": "10.4.7",
40-
"@nrwl/eslint-plugin-nx": "10.4.7",
41-
"@nrwl/jest": "10.4.7",
42-
"@nrwl/nx-plugin": "10.4.7",
43-
"@nrwl/tao": "10.4.7",
44-
"@nrwl/workspace": "10.4.7",
38+
"@nrwl/angular": "11.0.20",
39+
"@nrwl/cli": "11.0.20",
40+
"@nrwl/eslint-plugin-nx": "11.0.20",
41+
"@nrwl/jest": "11.0.20",
42+
"@nrwl/nx-plugin": "11.0.20",
43+
"@nrwl/tao": "11.0.20",
44+
"@nrwl/workspace": "11.0.20",
4545
"@types/jest": "26.0.8",
46-
"@types/node": "~8.9.4",
46+
"@types/node": "12.12.38",
4747
"@typescript-eslint/eslint-plugin": "4.3.0",
4848
"@typescript-eslint/parser": "4.3.0",
4949
"commitizen": "^4.2.2",
@@ -54,8 +54,8 @@
5454
"jest": "26.2.2",
5555
"prettier": "2.1.2",
5656
"ts-jest": "26.4.0",
57-
"ts-node": "~7.0.0",
58-
"tslint": "6.0.0",
57+
"ts-node": "9.1.1",
58+
"tslint": "6.1.3",
5959
"typescript": "4.0.5"
6060
},
6161
"config": {
File renamed without changes.

workspace.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@
2525
"options": {
2626
"jestConfig": "libs/ddd/jest.config.js",
2727
"passWithNoTests": true
28-
}
28+
},
29+
"outputs": [
30+
"coverage/libs/ddd"
31+
]
2932
},
3033
"build": {
3134
"builder": "@nrwl/node:package",
@@ -51,9 +54,11 @@
5154
"glob": "builders.json",
5255
"output": "."
5356
}
54-
],
55-
"srcRootForCompilationRoot": "libs/ddd"
56-
}
57+
]
58+
},
59+
"outputs": [
60+
"{options.outputPath}"
61+
]
5762
}
5863
}
5964
},
@@ -130,4 +135,4 @@
130135
}
131136
}
132137
}
133-
}
138+
}

0 commit comments

Comments
 (0)