@nrwl/workspace 13.10.0-beta.4 → 13.10.0-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/executors.json +5 -5
- package/generators.json +20 -20
- package/package.json +8 -8
- package/src/core/file-utils.d.ts +1 -0
- package/src/core/file-utils.js +5 -0
- package/src/core/file-utils.js.map +1 -0
- package/src/core/project-graph.d.ts +1 -0
- package/src/core/project-graph.js +5 -0
- package/src/core/project-graph.js.map +1 -0
- package/src/executors/counter/schema.json +3 -3
- package/src/executors/run-commands/schema.json +23 -9
- package/src/executors/run-script/schema.json +1 -1
- package/src/generators/convert-to-nx-project/schema.json +6 -5
- package/src/generators/library/schema.json +17 -16
- package/src/generators/move/schema.json +6 -6
- package/src/generators/new/schema.json +4 -3
- package/src/generators/npm-package/schema.json +2 -1
- package/src/generators/preset/schema.json +2 -1
- package/src/generators/remove/schema.json +7 -7
- package/src/generators/run-commands/schema.json +8 -7
- package/src/generators/workspace/files/__dot__gitignore +1 -1
- package/src/generators/workspace/schema.json +2 -1
- package/src/generators/workspace-generator/files/schema.json__tmpl__ +1 -1
- package/src/generators/workspace-generator/schema.json +3 -2
- package/src/migrations/update-13-9-0/replace-tao-with-nx.js +2 -0
- package/src/migrations/update-13-9-0/replace-tao-with-nx.js.map +1 -1
- package/src/tasks-runner/default-tasks-runner.d.ts +1 -0
- package/src/tasks-runner/default-tasks-runner.js +5 -0
- package/src/tasks-runner/default-tasks-runner.js.map +1 -0
- package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.d.ts +1 -0
- package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.js +5 -0
- package/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.js.map +1 -0
- package/src/tasks-runner/tasks-runner.d.ts +2 -0
- package/src/tasks-runner/tasks-runner.js +5 -0
- package/src/tasks-runner/tasks-runner.js.map +1 -0
- package/src/utils/runtime-lint-utils.js +1 -1
- package/src/utils/runtime-lint-utils.js.map +1 -1
- package/src/utils/versions.js +1 -1
package/executors.json
CHANGED
|
@@ -3,31 +3,31 @@
|
|
|
3
3
|
"run-commands": {
|
|
4
4
|
"implementation": "./src/executors/run-commands/compat",
|
|
5
5
|
"schema": "./src/executors/run-commands/schema.json",
|
|
6
|
-
"description": "Run any custom commands with Nx"
|
|
6
|
+
"description": "Run any custom commands with Nx."
|
|
7
7
|
},
|
|
8
8
|
"run-script": {
|
|
9
9
|
"implementation": "./src/executors/run-script/compat",
|
|
10
10
|
"schema": "./src/executors/run-script/schema.json",
|
|
11
|
-
"description": "Run an
|
|
11
|
+
"description": "Run an NPM script using Nx."
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"executors": {
|
|
15
15
|
"run-commands": {
|
|
16
16
|
"implementation": "./src/executors/run-commands/run-commands.impl",
|
|
17
17
|
"schema": "./src/executors/run-commands/schema.json",
|
|
18
|
-
"description": "Run any custom commands with Nx"
|
|
18
|
+
"description": "Run any custom commands with Nx."
|
|
19
19
|
},
|
|
20
20
|
"counter": {
|
|
21
21
|
"implementation": "./src/executors/counter/counter.impl",
|
|
22
22
|
"batchImplementation": "./src/executors/counter/counter.impl#batchCounter",
|
|
23
23
|
"schema": "./src/executors/counter/schema.json",
|
|
24
|
-
"description": "A dummy executor useful for
|
|
24
|
+
"description": "A dummy executor useful for E2E tests.",
|
|
25
25
|
"hidden": true
|
|
26
26
|
},
|
|
27
27
|
"run-script": {
|
|
28
28
|
"implementation": "./src/executors/run-script/run-script.impl",
|
|
29
29
|
"schema": "./src/executors/run-script/schema.json",
|
|
30
|
-
"description": "Run an
|
|
30
|
+
"description": "Run an NPM script using Nx."
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
}
|
package/generators.json
CHANGED
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
"workspace": {
|
|
6
6
|
"factory": "./src/generators/workspace/workspace#workspaceSchematic",
|
|
7
7
|
"schema": "./src/generators/workspace/schema.json",
|
|
8
|
-
"description": "Create an empty workspace",
|
|
8
|
+
"description": "Create an empty workspace.",
|
|
9
9
|
"hidden": true
|
|
10
10
|
},
|
|
11
11
|
|
|
12
12
|
"preset": {
|
|
13
13
|
"factory": "./src/generators/preset/preset#presetSchematic",
|
|
14
14
|
"schema": "./src/generators/preset/schema.json",
|
|
15
|
-
"description": "Create application in an empty workspace",
|
|
15
|
+
"description": "Create application in an empty workspace.",
|
|
16
16
|
"hidden": true
|
|
17
17
|
},
|
|
18
18
|
|
|
@@ -20,20 +20,20 @@
|
|
|
20
20
|
"factory": "./src/generators/move/move#moveSchematic",
|
|
21
21
|
"schema": "./src/generators/move/schema.json",
|
|
22
22
|
"aliases": ["mv"],
|
|
23
|
-
"description": "Move an application or library to another folder"
|
|
23
|
+
"description": "Move an application or library to another folder."
|
|
24
24
|
},
|
|
25
25
|
|
|
26
26
|
"remove": {
|
|
27
27
|
"factory": "./src/generators/remove/remove#removeSchematic",
|
|
28
28
|
"schema": "./src/generators/remove/schema.json",
|
|
29
29
|
"aliases": ["rm"],
|
|
30
|
-
"description": "Remove an application or library"
|
|
30
|
+
"description": "Remove an application or library."
|
|
31
31
|
},
|
|
32
32
|
|
|
33
33
|
"new": {
|
|
34
34
|
"factory": "./src/generators/new/new#newSchematic",
|
|
35
35
|
"schema": "./src/generators/new/schema.json",
|
|
36
|
-
"description": "Create a workspace",
|
|
36
|
+
"description": "Create a workspace.",
|
|
37
37
|
"hidden": true
|
|
38
38
|
},
|
|
39
39
|
|
|
@@ -42,33 +42,33 @@
|
|
|
42
42
|
"schema": "./src/generators/library/schema.json",
|
|
43
43
|
"aliases": ["lib"],
|
|
44
44
|
"x-type": "library",
|
|
45
|
-
"description": "Create a library"
|
|
45
|
+
"description": "Create a library."
|
|
46
46
|
},
|
|
47
47
|
|
|
48
48
|
"workspace-generator": {
|
|
49
49
|
"factory": "./src/generators/workspace-generator/workspace-generator",
|
|
50
50
|
"schema": "./src/generators/workspace-generator/schema.json",
|
|
51
51
|
"aliases": ["workspace-schematic"],
|
|
52
|
-
"description": "Generates a workspace generator"
|
|
52
|
+
"description": "Generates a workspace generator."
|
|
53
53
|
},
|
|
54
54
|
|
|
55
55
|
"run-commands": {
|
|
56
56
|
"factory": "./src/generators/run-commands/run-commands#runCommandsSchematic",
|
|
57
57
|
"schema": "./src/generators/run-commands/schema.json",
|
|
58
58
|
"aliases": ["run-command", "target"],
|
|
59
|
-
"description": "Generates a target to run any command in the terminal"
|
|
59
|
+
"description": "Generates a target to run any command in the terminal."
|
|
60
60
|
},
|
|
61
61
|
|
|
62
62
|
"convert-to-nx-project": {
|
|
63
63
|
"factory": "./src/generators/convert-to-nx-project/convert-to-nx-project#convertToNxProjectSchematic",
|
|
64
64
|
"schema": "./src/generators/convert-to-nx-project/schema.json",
|
|
65
|
-
"description": "Moves a project's configuration outside of workspace.json"
|
|
65
|
+
"description": "Moves a project's configuration outside of `workspace.json`."
|
|
66
66
|
},
|
|
67
67
|
|
|
68
68
|
"npm-package": {
|
|
69
69
|
"factory": "./src/generators/npm-package/npm-package#npmPackageSchematic",
|
|
70
70
|
"schema": "./src/generators/npm-package/schema.json",
|
|
71
|
-
"description": "Create a minimal
|
|
71
|
+
"description": "Create a minimal NPM package.",
|
|
72
72
|
"x-type": "library"
|
|
73
73
|
}
|
|
74
74
|
},
|
|
@@ -76,14 +76,14 @@
|
|
|
76
76
|
"workspace": {
|
|
77
77
|
"factory": "./src/generators/workspace/workspace#workspaceGenerator",
|
|
78
78
|
"schema": "./src/generators/workspace/schema.json",
|
|
79
|
-
"description": "Create an empty workspace",
|
|
79
|
+
"description": "Create an empty workspace.",
|
|
80
80
|
"hidden": true
|
|
81
81
|
},
|
|
82
82
|
|
|
83
83
|
"preset": {
|
|
84
84
|
"factory": "./src/generators/preset/preset#presetGenerator",
|
|
85
85
|
"schema": "./src/generators/preset/schema.json",
|
|
86
|
-
"description": "Create application in an empty workspace",
|
|
86
|
+
"description": "Create application in an empty workspace.",
|
|
87
87
|
"hidden": true
|
|
88
88
|
},
|
|
89
89
|
|
|
@@ -91,20 +91,20 @@
|
|
|
91
91
|
"factory": "./src/generators/move/move#moveGenerator",
|
|
92
92
|
"schema": "./src/generators/move/schema.json",
|
|
93
93
|
"aliases": ["mv"],
|
|
94
|
-
"description": "Move an application or library to another folder"
|
|
94
|
+
"description": "Move an application or library to another folder."
|
|
95
95
|
},
|
|
96
96
|
|
|
97
97
|
"remove": {
|
|
98
98
|
"factory": "./src/generators/remove/remove#removeGenerator",
|
|
99
99
|
"schema": "./src/generators/remove/schema.json",
|
|
100
100
|
"aliases": ["rm"],
|
|
101
|
-
"description": "Remove an application or library"
|
|
101
|
+
"description": "Remove an application or library."
|
|
102
102
|
},
|
|
103
103
|
|
|
104
104
|
"new": {
|
|
105
105
|
"factory": "./src/generators/new/new#newGenerator",
|
|
106
106
|
"schema": "./src/generators/new/schema.json",
|
|
107
|
-
"description": "Create a workspace",
|
|
107
|
+
"description": "Create a workspace.",
|
|
108
108
|
"hidden": true
|
|
109
109
|
},
|
|
110
110
|
|
|
@@ -113,33 +113,33 @@
|
|
|
113
113
|
"schema": "./src/generators/library/schema.json",
|
|
114
114
|
"aliases": ["lib"],
|
|
115
115
|
"x-type": "library",
|
|
116
|
-
"description": "Create a library"
|
|
116
|
+
"description": "Create a library."
|
|
117
117
|
},
|
|
118
118
|
|
|
119
119
|
"workspace-generator": {
|
|
120
120
|
"factory": "./src/generators/workspace-generator/workspace-generator",
|
|
121
121
|
"schema": "./src/generators/workspace-generator/schema.json",
|
|
122
122
|
"aliases": ["workspace-schematic"],
|
|
123
|
-
"description": "Generates a workspace generator"
|
|
123
|
+
"description": "Generates a workspace generator."
|
|
124
124
|
},
|
|
125
125
|
|
|
126
126
|
"run-commands": {
|
|
127
127
|
"factory": "./src/generators/run-commands/run-commands#runCommandsGenerator",
|
|
128
128
|
"schema": "./src/generators/run-commands/schema.json",
|
|
129
129
|
"aliases": ["run-command", "target"],
|
|
130
|
-
"description": "Generates a target to run any command in the terminal"
|
|
130
|
+
"description": "Generates a target to run any command in the terminal."
|
|
131
131
|
},
|
|
132
132
|
|
|
133
133
|
"convert-to-nx-project": {
|
|
134
134
|
"factory": "./src/generators/convert-to-nx-project/convert-to-nx-project#convertToNxProjectGenerator",
|
|
135
135
|
"schema": "./src/generators/convert-to-nx-project/schema.json",
|
|
136
|
-
"description": "Moves a project's configuration outside of workspace.json"
|
|
136
|
+
"description": "Moves a project's configuration outside of `workspace.json`."
|
|
137
137
|
},
|
|
138
138
|
|
|
139
139
|
"npm-package": {
|
|
140
140
|
"factory": "./src/generators/npm-package/npm-package#npmPackageGenerator",
|
|
141
141
|
"schema": "./src/generators/npm-package/schema.json",
|
|
142
|
-
"description": "Create a minimal
|
|
142
|
+
"description": "Create a minimal NPM package.",
|
|
143
143
|
"x-type": "library"
|
|
144
144
|
}
|
|
145
145
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/workspace",
|
|
3
|
-
"version": "13.10.0-beta.
|
|
4
|
-
"description": "Smart, Fast and Extensible Build System",
|
|
3
|
+
"version": "13.10.0-beta.7",
|
|
4
|
+
"description": "Smart, Fast and Extensible Build System.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/nrwl/nx.git",
|
|
@@ -73,17 +73,17 @@
|
|
|
73
73
|
"rxjs": "^6.5.4",
|
|
74
74
|
"semver": "7.3.4",
|
|
75
75
|
"tmp": "~0.2.1",
|
|
76
|
-
"yargs": "
|
|
77
|
-
"yargs-parser": "
|
|
76
|
+
"yargs": "^17.4.0",
|
|
77
|
+
"yargs-parser": "21.0.1",
|
|
78
78
|
"chalk": "4.1.0",
|
|
79
79
|
"flat": "^5.0.2",
|
|
80
80
|
"minimatch": "3.0.4",
|
|
81
81
|
"enquirer": "~2.3.6",
|
|
82
82
|
"tslib": "^2.3.0",
|
|
83
|
-
"nx": "13.10.0-beta.
|
|
84
|
-
"@nrwl/devkit": "13.10.0-beta.
|
|
85
|
-
"@nrwl/jest": "13.10.0-beta.
|
|
86
|
-
"@nrwl/linter": "13.10.0-beta.
|
|
83
|
+
"nx": "13.10.0-beta.7",
|
|
84
|
+
"@nrwl/devkit": "13.10.0-beta.7",
|
|
85
|
+
"@nrwl/jest": "13.10.0-beta.7",
|
|
86
|
+
"@nrwl/linter": "13.10.0-beta.7"
|
|
87
87
|
},
|
|
88
88
|
"nx-migrations": {
|
|
89
89
|
"migrations": "./migrations.json"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from 'nx/src/core/file-utils';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-utils.js","sourceRoot":"","sources":["../../../../../packages/workspace/src/core/file-utils.ts"],"names":[],"mappings":";;;AAAA,iEAAuC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from 'nx/src/core/project-graph/project-graph';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"project-graph.js","sourceRoot":"","sources":["../../../../../packages/workspace/src/core/project-graph.ts"],"names":[],"mappings":";;;AAAA,kFAAwD"}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"title": "Counter",
|
|
3
|
-
"description": "A dummy executor useful for
|
|
3
|
+
"description": "A dummy executor useful for E2E tests.",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"cli": "nx",
|
|
6
6
|
"outputCapture": "pipe",
|
|
7
7
|
"properties": {
|
|
8
8
|
"to": {
|
|
9
9
|
"type": "number",
|
|
10
|
-
"description": "Count to this number"
|
|
10
|
+
"description": "Count to this number."
|
|
11
11
|
},
|
|
12
12
|
"result": {
|
|
13
13
|
"type": "boolean",
|
|
14
|
-
"description": "Final result"
|
|
14
|
+
"description": "Final result."
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"additionalProperties": true,
|
|
@@ -1,13 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"title": "Run Commands",
|
|
3
|
-
"description": "Run any custom commands with Nx",
|
|
3
|
+
"description": "Run any custom commands with Nx.",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"cli": "nx",
|
|
6
6
|
"outputCapture": "pipe",
|
|
7
|
+
"presets": [
|
|
8
|
+
{
|
|
9
|
+
"name": "Arguments forwarding",
|
|
10
|
+
"keys": ["commands"]
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "Custom done conditions",
|
|
14
|
+
"keys": ["commands", "readyWhen"]
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"name": "Setting the cwd",
|
|
18
|
+
"keys": ["commands", "cwd"]
|
|
19
|
+
}
|
|
20
|
+
],
|
|
7
21
|
"properties": {
|
|
8
22
|
"commands": {
|
|
9
23
|
"type": "array",
|
|
10
|
-
"description": "Commands to run in child process
|
|
24
|
+
"description": "Commands to run in child process.",
|
|
11
25
|
"items": {
|
|
12
26
|
"oneOf": [
|
|
13
27
|
{
|
|
@@ -15,15 +29,15 @@
|
|
|
15
29
|
"properties": {
|
|
16
30
|
"command": {
|
|
17
31
|
"type": "string",
|
|
18
|
-
"description": "Command to run in child process"
|
|
32
|
+
"description": "Command to run in child process."
|
|
19
33
|
},
|
|
20
34
|
"forwardAllArgs": {
|
|
21
35
|
"type": "boolean",
|
|
22
|
-
"description": "Whether arguments should be forwarded when interpolation is not present"
|
|
36
|
+
"description": "Whether arguments should be forwarded when interpolation is not present."
|
|
23
37
|
},
|
|
24
38
|
"description": {
|
|
25
39
|
"type": "string",
|
|
26
|
-
"description": "An optional description useful for inline documentation purposes. It is not used as part of the execution of the command"
|
|
40
|
+
"description": "An optional description useful for inline documentation purposes. It is not used as part of the execution of the command."
|
|
27
41
|
}
|
|
28
42
|
},
|
|
29
43
|
"additionalProperties": false,
|
|
@@ -37,11 +51,11 @@
|
|
|
37
51
|
},
|
|
38
52
|
"command": {
|
|
39
53
|
"type": "string",
|
|
40
|
-
"description": "Command to run in child process"
|
|
54
|
+
"description": "Command to run in child process."
|
|
41
55
|
},
|
|
42
56
|
"parallel": {
|
|
43
57
|
"type": "boolean",
|
|
44
|
-
"description": "Run commands in parallel",
|
|
58
|
+
"description": "Run commands in parallel.",
|
|
45
59
|
"default": true
|
|
46
60
|
},
|
|
47
61
|
"readyWhen": {
|
|
@@ -54,11 +68,11 @@
|
|
|
54
68
|
},
|
|
55
69
|
"envFile": {
|
|
56
70
|
"type": "string",
|
|
57
|
-
"description": "You may specify a custom .env file path"
|
|
71
|
+
"description": "You may specify a custom .env file path."
|
|
58
72
|
},
|
|
59
73
|
"color": {
|
|
60
74
|
"type": "boolean",
|
|
61
|
-
"description": "Use colors when showing output of command",
|
|
75
|
+
"description": "Use colors when showing output of command.",
|
|
62
76
|
"default": false
|
|
63
77
|
},
|
|
64
78
|
"outputPath": {
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"properties": {
|
|
8
8
|
"script": {
|
|
9
9
|
"type": "string",
|
|
10
|
-
"description": "An npm script name in the package.json file of the project (e.g., build)"
|
|
10
|
+
"description": "An npm script name in the `package.json` file of the project (e.g., `build`)."
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"additionalProperties": true,
|
|
@@ -2,21 +2,22 @@
|
|
|
2
2
|
"$schema": "http://json-schema.org/schema",
|
|
3
3
|
"$id": "SchematicsConvertToNxProject",
|
|
4
4
|
"title": "Create a custom target to run any command",
|
|
5
|
+
"description": "Create a custom target to run any command.",
|
|
5
6
|
"type": "object",
|
|
6
7
|
"cli": "nx",
|
|
7
8
|
"examples": [
|
|
8
9
|
{
|
|
9
|
-
"command": "g @nrwl/workspace:convert-to-nx-project --project my-feature-lib",
|
|
10
|
-
"description": "Convert the my-feature-lib project to use project.json file instead of workspace.json"
|
|
10
|
+
"command": "nx g @nrwl/workspace:convert-to-nx-project --project my-feature-lib",
|
|
11
|
+
"description": "Convert the `my-feature-lib` project to use `project.json` file instead of `workspace.json`"
|
|
11
12
|
},
|
|
12
13
|
{
|
|
13
|
-
"command": "g @nrwl/workspace:convert-to-nx-project --all",
|
|
14
|
-
"description": "Convert all projects in workspace.json to separate project.json files
|
|
14
|
+
"command": "nx g @nrwl/workspace:convert-to-nx-project --all",
|
|
15
|
+
"description": "Convert all projects in `workspace.json` to separate `project.json` files"
|
|
15
16
|
}
|
|
16
17
|
],
|
|
17
18
|
"properties": {
|
|
18
19
|
"project": {
|
|
19
|
-
"description": "Project name",
|
|
20
|
+
"description": "Project name.",
|
|
20
21
|
"type": "string"
|
|
21
22
|
},
|
|
22
23
|
"all": {
|
|
@@ -3,17 +3,18 @@
|
|
|
3
3
|
"$id": "NxTypescriptLibrary",
|
|
4
4
|
"cli": "nx",
|
|
5
5
|
"title": "Create a TypeScript Library",
|
|
6
|
+
"description": "Create a TypeScript Library.",
|
|
6
7
|
"type": "object",
|
|
7
8
|
"examples": [
|
|
8
9
|
{
|
|
9
|
-
"command": "g lib mylib --directory=myapp",
|
|
10
|
-
"description": "Generate libs/myapp/mylib"
|
|
10
|
+
"command": "nx g lib mylib --directory=myapp",
|
|
11
|
+
"description": "Generate `libs/myapp/mylib`"
|
|
11
12
|
}
|
|
12
13
|
],
|
|
13
14
|
"properties": {
|
|
14
15
|
"name": {
|
|
15
16
|
"type": "string",
|
|
16
|
-
"description": "Library name",
|
|
17
|
+
"description": "Library name.",
|
|
17
18
|
"$default": {
|
|
18
19
|
"$source": "argv",
|
|
19
20
|
"index": 0
|
|
@@ -23,7 +24,7 @@
|
|
|
23
24
|
},
|
|
24
25
|
"directory": {
|
|
25
26
|
"type": "string",
|
|
26
|
-
"description": "A directory where the lib is placed"
|
|
27
|
+
"description": "A directory where the lib is placed."
|
|
27
28
|
},
|
|
28
29
|
"linter": {
|
|
29
30
|
"description": "The tool to use for running lint checks.",
|
|
@@ -34,36 +35,36 @@
|
|
|
34
35
|
"unitTestRunner": {
|
|
35
36
|
"type": "string",
|
|
36
37
|
"enum": ["jest", "none"],
|
|
37
|
-
"description": "Test runner to use for unit tests",
|
|
38
|
+
"description": "Test runner to use for unit tests.",
|
|
38
39
|
"default": "jest"
|
|
39
40
|
},
|
|
40
41
|
"tags": {
|
|
41
42
|
"type": "string",
|
|
42
|
-
"description": "Add tags to the library (used for linting)"
|
|
43
|
+
"description": "Add tags to the library (used for linting)."
|
|
43
44
|
},
|
|
44
45
|
"skipFormat": {
|
|
45
|
-
"description": "Skip formatting files",
|
|
46
|
+
"description": "Skip formatting files.",
|
|
46
47
|
"type": "boolean",
|
|
47
48
|
"default": false
|
|
48
49
|
},
|
|
49
50
|
"skipTsConfig": {
|
|
50
51
|
"type": "boolean",
|
|
51
|
-
"description": "Do not update tsconfig.json for development experience.",
|
|
52
|
+
"description": "Do not update `tsconfig.json` for development experience.",
|
|
52
53
|
"default": false
|
|
53
54
|
},
|
|
54
55
|
"testEnvironment": {
|
|
55
56
|
"type": "string",
|
|
56
57
|
"enum": ["jsdom", "node"],
|
|
57
|
-
"description": "The test environment to use if unitTestRunner is set to jest",
|
|
58
|
+
"description": "The test environment to use if `unitTestRunner` is set to `jest`.",
|
|
58
59
|
"default": "jsdom"
|
|
59
60
|
},
|
|
60
61
|
"importPath": {
|
|
61
62
|
"type": "string",
|
|
62
|
-
"description": "The library name used to import it, like
|
|
63
|
+
"description": "The library name used to import it, like `@myorg/my-awesome-lib`."
|
|
63
64
|
},
|
|
64
65
|
"babelJest": {
|
|
65
66
|
"type": "boolean",
|
|
66
|
-
"description": "Use babel instead ts-jest",
|
|
67
|
+
"description": "Use `babel` instead `ts-jest`.",
|
|
67
68
|
"default": false
|
|
68
69
|
},
|
|
69
70
|
"pascalCaseFiles": {
|
|
@@ -74,17 +75,17 @@
|
|
|
74
75
|
},
|
|
75
76
|
"js": {
|
|
76
77
|
"type": "boolean",
|
|
77
|
-
"description": "Generate JavaScript files rather than TypeScript files",
|
|
78
|
+
"description": "Generate JavaScript files rather than TypeScript files.",
|
|
78
79
|
"default": false
|
|
79
80
|
},
|
|
80
81
|
"strict": {
|
|
81
82
|
"type": "boolean",
|
|
82
|
-
"description": "Whether to enable tsconfig strict mode or not.",
|
|
83
|
+
"description": "Whether to enable `tsconfig` strict mode or not.",
|
|
83
84
|
"default": true
|
|
84
85
|
},
|
|
85
86
|
"skipBabelrc": {
|
|
86
87
|
"type": "boolean",
|
|
87
|
-
"description": "Do not generate
|
|
88
|
+
"description": "Do not generate `.babelrc` file. Useful for Node libraries that are not compiled by Babel.",
|
|
88
89
|
"default": false
|
|
89
90
|
},
|
|
90
91
|
"buildable": {
|
|
@@ -94,11 +95,11 @@
|
|
|
94
95
|
},
|
|
95
96
|
"setParserOptionsProject": {
|
|
96
97
|
"type": "boolean",
|
|
97
|
-
"description": "Whether or not to configure the ESLint
|
|
98
|
+
"description": "Whether or not to configure the ESLint `parserOptions.project` option. We do not do this by default for lint performance reasons.",
|
|
98
99
|
"default": false
|
|
99
100
|
},
|
|
100
101
|
"standaloneConfig": {
|
|
101
|
-
"description": "Split the project configuration into
|
|
102
|
+
"description": "Split the project configuration into `<projectRoot>/project.json` rather than including it inside `workspace.json`.",
|
|
102
103
|
"type": "boolean"
|
|
103
104
|
}
|
|
104
105
|
},
|
|
@@ -3,23 +3,23 @@
|
|
|
3
3
|
"$id": "NxWorkspaceMove",
|
|
4
4
|
"cli": "nx",
|
|
5
5
|
"title": "Nx Move",
|
|
6
|
-
"description": "Move a project to another folder in the workspace",
|
|
6
|
+
"description": "Move a project to another folder in the workspace.",
|
|
7
7
|
"type": "object",
|
|
8
8
|
"examples": [
|
|
9
9
|
{
|
|
10
|
-
"command": "g @nrwl/workspace:move --project my-feature-lib shared/my-feature-lib",
|
|
11
|
-
"description": "Move libs/my-feature-lib to libs/shared/my-feature-lib"
|
|
10
|
+
"command": "nx g @nrwl/workspace:move --project my-feature-lib shared/my-feature-lib",
|
|
11
|
+
"description": "Move `libs/my-feature-lib` to `libs/shared/my-feature-lib`"
|
|
12
12
|
}
|
|
13
13
|
],
|
|
14
14
|
"properties": {
|
|
15
15
|
"projectName": {
|
|
16
16
|
"type": "string",
|
|
17
17
|
"alias": "project",
|
|
18
|
-
"description": "The name of the project to move"
|
|
18
|
+
"description": "The name of the project to move."
|
|
19
19
|
},
|
|
20
20
|
"destination": {
|
|
21
21
|
"type": "string",
|
|
22
|
-
"description": "The folder to move the project into",
|
|
22
|
+
"description": "The folder to move the project into.",
|
|
23
23
|
"$default": {
|
|
24
24
|
"$source": "argv",
|
|
25
25
|
"index": 0
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"importPath": {
|
|
29
29
|
"type": "string",
|
|
30
|
-
"description": "The new import path to use in the tsconfig.base.json"
|
|
30
|
+
"description": "The new import path to use in the `tsconfig.base.json`."
|
|
31
31
|
},
|
|
32
32
|
"updateImportPath": {
|
|
33
33
|
"type": "boolean",
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json-schema.org/schema",
|
|
3
3
|
"$id": "NxWorkspaceNew",
|
|
4
4
|
"title": "Create an empty workspace",
|
|
5
|
+
"description": "Create an empty workspace.",
|
|
5
6
|
"type": "object",
|
|
6
7
|
"cli": "nx",
|
|
7
8
|
"properties": {
|
|
@@ -15,7 +16,7 @@
|
|
|
15
16
|
"x-prompt": "What name would you like to use for the workspace?"
|
|
16
17
|
},
|
|
17
18
|
"cli": {
|
|
18
|
-
"description": "CLI used for generating code and running tasks",
|
|
19
|
+
"description": "CLI used for generating code and running tasks.",
|
|
19
20
|
"type": "string",
|
|
20
21
|
"enum": ["nx", "angular"],
|
|
21
22
|
"default": "nx"
|
|
@@ -70,7 +71,7 @@
|
|
|
70
71
|
"default": true
|
|
71
72
|
},
|
|
72
73
|
"preset": {
|
|
73
|
-
"description": "What to create in the new workspace",
|
|
74
|
+
"description": "What to create in the new workspace.",
|
|
74
75
|
"type": "string"
|
|
75
76
|
},
|
|
76
77
|
"appName": {
|
|
@@ -78,7 +79,7 @@
|
|
|
78
79
|
"description": "Application name."
|
|
79
80
|
},
|
|
80
81
|
"nxCloud": {
|
|
81
|
-
"description": "Connect the workspace to the free tier of the distributed cache provided by Nx Cloud",
|
|
82
|
+
"description": "Connect the workspace to the free tier of the distributed cache provided by Nx Cloud.",
|
|
82
83
|
"type": "boolean",
|
|
83
84
|
"default": false
|
|
84
85
|
},
|
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
"$schema": "http://json-schema.org/schema",
|
|
3
3
|
"$id": "NxWorkspaceNpmPackage",
|
|
4
4
|
"title": "Add a minimal npm package",
|
|
5
|
+
"description": "Add a minimal npm package.",
|
|
5
6
|
"cli": "nx",
|
|
6
7
|
"type": "object",
|
|
7
8
|
"properties": {
|
|
8
9
|
"name": {
|
|
9
10
|
"type": "string",
|
|
10
|
-
"description": "Package name",
|
|
11
|
+
"description": "Package name.",
|
|
11
12
|
"$default": {
|
|
12
13
|
"$source": "argv",
|
|
13
14
|
"index": 0
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"$id": "NxWorkspacePreset",
|
|
4
4
|
"cli": "nx",
|
|
5
5
|
"title": "Creates applications in a new workspace",
|
|
6
|
+
"description": "Creates applications in a new workspace.",
|
|
6
7
|
"type": "object",
|
|
7
8
|
"properties": {
|
|
8
9
|
"preset": {
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
}
|
|
53
54
|
},
|
|
54
55
|
"standaloneConfig": {
|
|
55
|
-
"description": "Split the project configurations into
|
|
56
|
+
"description": "Split the project configurations into `<projectRoot>/project.json` rather than including it inside `workspace.json`.",
|
|
56
57
|
"type": "boolean"
|
|
57
58
|
},
|
|
58
59
|
"packageManager": {
|
|
@@ -3,23 +3,23 @@
|
|
|
3
3
|
"$id": "NxWorkspaceRemove",
|
|
4
4
|
"cli": "nx",
|
|
5
5
|
"title": "Nx Remove",
|
|
6
|
-
"description": "Remove a project from the workspace",
|
|
6
|
+
"description": "Remove a project from the workspace.",
|
|
7
7
|
"type": "object",
|
|
8
8
|
"examples": [
|
|
9
9
|
{
|
|
10
|
-
"command": "g @nrwl/workspace:remove my-feature-lib",
|
|
11
|
-
"description": "Remove my-feature-lib from the workspace"
|
|
10
|
+
"command": "nx g @nrwl/workspace:remove my-feature-lib",
|
|
11
|
+
"description": "Remove `my-feature-lib` from the workspace"
|
|
12
12
|
},
|
|
13
13
|
{
|
|
14
|
-
"command": "g @nrwl/workspace:remove my-feature-lib --forceRemove",
|
|
15
|
-
"description": "Force removal of my-feature-lib from the workspace"
|
|
14
|
+
"command": "nx g @nrwl/workspace:remove my-feature-lib --forceRemove",
|
|
15
|
+
"description": "Force removal of `my-feature-lib` from the workspace"
|
|
16
16
|
}
|
|
17
17
|
],
|
|
18
18
|
"properties": {
|
|
19
19
|
"projectName": {
|
|
20
20
|
"type": "string",
|
|
21
21
|
"alias": "project",
|
|
22
|
-
"description": "The name of the project to remove",
|
|
22
|
+
"description": "The name of the project to remove.",
|
|
23
23
|
"$default": {
|
|
24
24
|
"$source": "argv",
|
|
25
25
|
"index": 0
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"forceRemove": {
|
|
29
29
|
"type": "boolean",
|
|
30
30
|
"aliases": ["force-remove"],
|
|
31
|
-
"description": "When true
|
|
31
|
+
"description": "When `true`, forces removal even if the project is still in use.",
|
|
32
32
|
"default": false
|
|
33
33
|
},
|
|
34
34
|
"skipFormat": {
|
|
@@ -2,18 +2,19 @@
|
|
|
2
2
|
"$schema": "http://json-schema.org/schema",
|
|
3
3
|
"$id": "SchematicsRunCommands",
|
|
4
4
|
"title": "Create a custom target to run any command",
|
|
5
|
+
"description": "Create a custom target to run any command.",
|
|
5
6
|
"type": "object",
|
|
6
7
|
"cli": "nx",
|
|
7
8
|
"examples": [
|
|
8
9
|
{
|
|
9
|
-
"command": "g @nrwl/workspace:run-commands printhello --project my-feature-lib --command 'echo hello'",
|
|
10
|
-
"description": "Add the printhello target to my-feature-lib"
|
|
10
|
+
"command": "nx g @nrwl/workspace:run-commands printhello --project my-feature-lib --command 'echo hello'",
|
|
11
|
+
"description": "Add the `printhello` target to `my-feature-lib`"
|
|
11
12
|
}
|
|
12
13
|
],
|
|
13
14
|
"properties": {
|
|
14
15
|
"name": {
|
|
15
16
|
"type": "string",
|
|
16
|
-
"description": "Target name",
|
|
17
|
+
"description": "Target name.",
|
|
17
18
|
"$default": {
|
|
18
19
|
"$source": "argv",
|
|
19
20
|
"index": 0
|
|
@@ -21,17 +22,17 @@
|
|
|
21
22
|
"x-prompt": "What name would you like to use to invoke the command?"
|
|
22
23
|
},
|
|
23
24
|
"project": {
|
|
24
|
-
"description": "Project name",
|
|
25
|
+
"description": "Project name.",
|
|
25
26
|
"type": "string",
|
|
26
27
|
"x-prompt": "What project does the target belong to?"
|
|
27
28
|
},
|
|
28
29
|
"command": {
|
|
29
|
-
"description": "Command to run",
|
|
30
|
+
"description": "Command to run.",
|
|
30
31
|
"type": "string",
|
|
31
32
|
"x-prompt": "What command would you like to run?"
|
|
32
33
|
},
|
|
33
34
|
"cwd": {
|
|
34
|
-
"description": "Current working directory of the command",
|
|
35
|
+
"description": "Current working directory of the command.",
|
|
35
36
|
"type": "string"
|
|
36
37
|
},
|
|
37
38
|
"outputs": {
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
"type": "string"
|
|
40
41
|
},
|
|
41
42
|
"envFile": {
|
|
42
|
-
"description": "Env files to be loaded before executing the commands",
|
|
43
|
+
"description": "Env files to be loaded before executing the commands.",
|
|
43
44
|
"type": "string"
|
|
44
45
|
}
|
|
45
46
|
},
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
"$id": "SchematicsNxNgNew",
|
|
4
4
|
"cli": "nx",
|
|
5
5
|
"title": "Create an empty workspace",
|
|
6
|
+
"description": "Create an empty workspace.",
|
|
6
7
|
"type": "object",
|
|
7
8
|
"properties": {
|
|
8
9
|
"name": {
|
|
@@ -46,7 +47,7 @@
|
|
|
46
47
|
},
|
|
47
48
|
"preset": {
|
|
48
49
|
"type": "string",
|
|
49
|
-
"description": "Preset of the workspace"
|
|
50
|
+
"description": "Preset of the workspace."
|
|
50
51
|
},
|
|
51
52
|
"npmScope": {
|
|
52
53
|
"type": "string",
|
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
"cli": "nx",
|
|
3
3
|
"$id": "SchematicsNxWorkspaceSchematic",
|
|
4
4
|
"title": "Create a custom generator",
|
|
5
|
+
"description": "Create a custom generator.",
|
|
5
6
|
"type": "object",
|
|
6
7
|
"properties": {
|
|
7
8
|
"name": {
|
|
8
9
|
"type": "string",
|
|
9
|
-
"description": "Generator name",
|
|
10
|
+
"description": "Generator name.",
|
|
10
11
|
"$default": {
|
|
11
12
|
"$source": "argv",
|
|
12
13
|
"index": 0
|
|
@@ -14,7 +15,7 @@
|
|
|
14
15
|
"x-prompt": "What name would you like to use for the workspace generator?"
|
|
15
16
|
},
|
|
16
17
|
"skipFormat": {
|
|
17
|
-
"description": "Skip formatting files",
|
|
18
|
+
"description": "Skip formatting files.",
|
|
18
19
|
"type": "boolean",
|
|
19
20
|
"default": false
|
|
20
21
|
}
|
|
@@ -14,6 +14,8 @@ function replaceTaoWithNx(host) {
|
|
|
14
14
|
removeTao(json.devDependencies);
|
|
15
15
|
return json;
|
|
16
16
|
});
|
|
17
|
+
const pmc = (0, devkit_1.getPackageManagerCommand)();
|
|
18
|
+
devkit_1.logger.info(`Please run ${pmc.install} to ensure the correct version of Nx is installed.`);
|
|
17
19
|
}
|
|
18
20
|
exports.replaceTaoWithNx = replaceTaoWithNx;
|
|
19
21
|
function removeTao(json) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"replace-tao-with-nx.js","sourceRoot":"","sources":["../../../../../../packages/workspace/src/migrations/update-13-9-0/replace-tao-with-nx.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"replace-tao-with-nx.js","sourceRoot":"","sources":["../../../../../../packages/workspace/src/migrations/update-13-9-0/replace-tao-with-nx.ts"],"names":[],"mappings":";;;AAAA,yCAKsB;AAEtB,SAAgB,gBAAgB,CAAC,IAAU;IACzC,IAAA,mBAAU,EAAC,IAAI,EAAE,cAAc,EAAE,CAAC,IAAS,EAAE,EAAE;QAC7C,IAAI,IAAI,CAAC,YAAY,CAAC,iBAAiB,CAAC,EAAE;YACxC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,iBAAiB,CAAC,CAAC;SAChE;aAAM,IAAI,IAAI,CAAC,eAAe,CAAC,iBAAiB,CAAC,EAAE;YAClD,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,eAAe,CAAC,iBAAiB,CAAC,CAAC;SACtE;QACD,SAAS,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAC7B,SAAS,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC;QAChC,OAAO,IAAI,CAAC;IACd,CAAC,CAAC,CAAC;IACH,MAAM,GAAG,GAAG,IAAA,iCAAwB,GAAE,CAAC;IACvC,eAAM,CAAC,IAAI,CACT,cAAc,GAAG,CAAC,OAAO,oDAAoD,CAC9E,CAAC;AACJ,CAAC;AAfD,4CAeC;AAED,SAAS,SAAS,CAAC,IAAS;IAC1B,IAAI,CAAC,IAAI;QAAE,OAAO;IAClB,IAAI,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC;AAChC,CAAC;AAED,kBAAe,gBAAgB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from 'nx/src/tasks-runner/default-tasks-runner';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"default-tasks-runner.js","sourceRoot":"","sources":["../../../../../packages/workspace/src/tasks-runner/default-tasks-runner.ts"],"names":[],"mappings":";;;AAAA,mFAAyD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from 'nx/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("nx/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle"), exports);
|
|
5
|
+
//# sourceMappingURL=dynamic-run-many-terminal-output-life-cycle.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dynamic-run-many-terminal-output-life-cycle.js","sourceRoot":"","sources":["../../../../../../packages/workspace/src/tasks-runner/life-cycles/dynamic-run-many-terminal-output-life-cycle.ts"],"names":[],"mappings":";;;AAAA,sHAA4F"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tasks-runner.js","sourceRoot":"","sources":["../../../../../packages/workspace/src/tasks-runner/tasks-runner.ts"],"names":[],"mappings":";;;AAAA,2EAAiD"}
|
|
@@ -194,7 +194,7 @@ function mapProjectGraphFiles(projectGraph) {
|
|
|
194
194
|
}
|
|
195
195
|
exports.mapProjectGraphFiles = mapProjectGraphFiles;
|
|
196
196
|
const ESLINT_REGEX = /node_modules.*\/eslint$/;
|
|
197
|
-
const NRWL_CLI_REGEX = /
|
|
197
|
+
const NRWL_CLI_REGEX = /nx\/bin\/run-executor\.js$/;
|
|
198
198
|
function isTerminalRun() {
|
|
199
199
|
return (process.argv.length > 1 &&
|
|
200
200
|
(!!process.argv[1].match(NRWL_CLI_REGEX) ||
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime-lint-utils.js","sourceRoot":"","sources":["../../../../../packages/workspace/src/utils/runtime-lint-utils.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"runtime-lint-utils.js","sourceRoot":"","sources":["../../../../../packages/workspace/src/utils/runtime-lint-utils.ts"],"names":[],"mappings":"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"}
|
package/src/utils/versions.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.eslintConfigPrettierVersion = exports.eslintVersion = exports.typescriptESLintVersion = exports.tslintVersion = exports.prettierVersion = exports.typescriptVersion = exports.angularCliVersion = exports.nxVersion = void 0;
|
|
4
|
-
exports.nxVersion = '13.10.0-beta.
|
|
4
|
+
exports.nxVersion = '13.10.0-beta.7';
|
|
5
5
|
exports.angularCliVersion = '~13.3.0';
|
|
6
6
|
exports.typescriptVersion = '~4.6.2';
|
|
7
7
|
exports.prettierVersion = '^2.5.1';
|