@powerlines/nx 0.11.283 → 0.11.286
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/dist/src/base/base-executor.js +5 -6
- package/dist/src/base/base-executor.mjs +5 -6
- package/dist/src/base/base-executor.mjs.map +1 -1
- package/dist/src/base/base-executor.schema.d.mts +20 -1
- package/dist/src/base/base-executor.schema.d.mts.map +1 -1
- package/dist/src/base/base-executor.schema.d.ts +20 -1
- package/dist/src/base/base-executor.schema.d.ts.map +1 -1
- package/dist/src/base/base-executor.schema.json +17 -1
- package/dist/src/base/base-executor.untyped.js +16 -1
- package/dist/src/base/base-executor.untyped.mjs +16 -1
- package/dist/src/base/base-executor.untyped.mjs.map +1 -1
- package/dist/src/executors/build/executor.d.mts +20 -1
- package/dist/src/executors/build/executor.d.mts.map +1 -1
- package/dist/src/executors/build/executor.d.ts +20 -1
- package/dist/src/executors/build/executor.d.ts.map +1 -1
- package/dist/src/executors/build/schema.d.ts +22 -1
- package/dist/src/executors/build/schema.json +17 -1
- package/dist/src/executors/clean/executor.d.mts +20 -1
- package/dist/src/executors/clean/executor.d.mts.map +1 -1
- package/dist/src/executors/clean/executor.d.ts +20 -1
- package/dist/src/executors/clean/executor.d.ts.map +1 -1
- package/dist/src/executors/clean/schema.d.ts +22 -1
- package/dist/src/executors/clean/schema.json +17 -1
- package/dist/src/executors/docs/executor.d.mts +20 -1
- package/dist/src/executors/docs/executor.d.mts.map +1 -1
- package/dist/src/executors/docs/executor.d.ts +20 -1
- package/dist/src/executors/docs/executor.d.ts.map +1 -1
- package/dist/src/executors/docs/schema.d.ts +22 -1
- package/dist/src/executors/docs/schema.json +17 -1
- package/dist/src/executors/lint/executor.d.mts +20 -1
- package/dist/src/executors/lint/executor.d.mts.map +1 -1
- package/dist/src/executors/lint/executor.d.ts +20 -1
- package/dist/src/executors/lint/executor.d.ts.map +1 -1
- package/dist/src/executors/lint/schema.d.ts +22 -1
- package/dist/src/executors/lint/schema.json +17 -1
- package/dist/src/executors/prepare/executor.d.mts +20 -1
- package/dist/src/executors/prepare/executor.d.mts.map +1 -1
- package/dist/src/executors/prepare/executor.d.ts +20 -1
- package/dist/src/executors/prepare/executor.d.ts.map +1 -1
- package/dist/src/executors/prepare/schema.d.ts +22 -1
- package/dist/src/executors/prepare/schema.json +17 -1
- package/dist/src/helpers/plugin-utilities.js +20 -26
- package/dist/src/helpers/plugin-utilities.mjs +20 -26
- package/dist/src/helpers/plugin-utilities.mjs.map +1 -1
- package/package.json +16 -16
|
@@ -4,11 +4,19 @@
|
|
|
4
4
|
"description": "A type definition for the Powerlines - Clean executor schema",
|
|
5
5
|
"required": [],
|
|
6
6
|
"properties": {
|
|
7
|
+
"config": {
|
|
8
|
+
"title": "Powerlines Configuration File",
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "path",
|
|
11
|
+
"description": "The path to the Powerlines configuration file. Alias for `configFile`.",
|
|
12
|
+
"id": "#config",
|
|
13
|
+
"default": "{projectRoot}/powerlines.config.ts"
|
|
14
|
+
},
|
|
7
15
|
"configFile": {
|
|
8
16
|
"title": "Powerlines Configuration File",
|
|
9
17
|
"type": "string",
|
|
10
18
|
"format": "path",
|
|
11
|
-
"description": "The path to the Powerlines configuration file",
|
|
19
|
+
"description": "The path to the Powerlines configuration file. Alias for `config`.",
|
|
12
20
|
"id": "#configFile",
|
|
13
21
|
"default": "{projectRoot}/powerlines.config.ts"
|
|
14
22
|
},
|
|
@@ -37,6 +45,13 @@
|
|
|
37
45
|
"description": "The path to the output directory for the build artifacts",
|
|
38
46
|
"id": "#outputPath"
|
|
39
47
|
},
|
|
48
|
+
"publishPath": {
|
|
49
|
+
"title": "Publish Path",
|
|
50
|
+
"type": "string",
|
|
51
|
+
"format": "path",
|
|
52
|
+
"description": "The path to the publish directory for the build artifacts",
|
|
53
|
+
"id": "#publishPath"
|
|
54
|
+
},
|
|
40
55
|
"sourceMap": {
|
|
41
56
|
"title": "Sourcemap",
|
|
42
57
|
"type": "boolean",
|
|
@@ -137,6 +152,7 @@
|
|
|
137
152
|
},
|
|
138
153
|
"type": "object",
|
|
139
154
|
"default": {
|
|
155
|
+
"config": "{projectRoot}/powerlines.config.ts",
|
|
140
156
|
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
141
157
|
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
142
158
|
"format": [
|
|
@@ -10,7 +10,17 @@ interface DocsExecutorSchema {
|
|
|
10
10
|
/**
|
|
11
11
|
* Powerlines Configuration File
|
|
12
12
|
*
|
|
13
|
-
* The path to the Powerlines configuration file
|
|
13
|
+
* The path to the Powerlines configuration file. Alias for `configFile`.
|
|
14
|
+
*
|
|
15
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
|
+
*
|
|
17
|
+
* @format path
|
|
18
|
+
*/
|
|
19
|
+
config?: string;
|
|
20
|
+
/**
|
|
21
|
+
* Powerlines Configuration File
|
|
22
|
+
*
|
|
23
|
+
* The path to the Powerlines configuration file. Alias for `config`.
|
|
14
24
|
*
|
|
15
25
|
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
26
|
*
|
|
@@ -45,6 +55,15 @@ interface DocsExecutorSchema {
|
|
|
45
55
|
* @format path
|
|
46
56
|
*/
|
|
47
57
|
outputPath?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Publish Path
|
|
60
|
+
*
|
|
61
|
+
* The path to the publish directory for the build artifacts
|
|
62
|
+
*
|
|
63
|
+
*
|
|
64
|
+
* @format path
|
|
65
|
+
*/
|
|
66
|
+
publishPath?: string;
|
|
48
67
|
/**
|
|
49
68
|
* Sourcemap
|
|
50
69
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.mts","names":["DocsExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/docs/schema.d.ts","../../../../src/executors/docs/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,
|
|
1
|
+
{"version":3,"file":"executor.d.mts","names":["DocsExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/docs/schema.d.ts","../../../../src/executors/docs/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACPT;;;EDkBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACnBA;;;;ED6BAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCtIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
|
|
@@ -10,7 +10,17 @@ interface DocsExecutorSchema {
|
|
|
10
10
|
/**
|
|
11
11
|
* Powerlines Configuration File
|
|
12
12
|
*
|
|
13
|
-
* The path to the Powerlines configuration file
|
|
13
|
+
* The path to the Powerlines configuration file. Alias for `configFile`.
|
|
14
|
+
*
|
|
15
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
|
+
*
|
|
17
|
+
* @format path
|
|
18
|
+
*/
|
|
19
|
+
config?: string;
|
|
20
|
+
/**
|
|
21
|
+
* Powerlines Configuration File
|
|
22
|
+
*
|
|
23
|
+
* The path to the Powerlines configuration file. Alias for `config`.
|
|
14
24
|
*
|
|
15
25
|
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
26
|
*
|
|
@@ -45,6 +55,15 @@ interface DocsExecutorSchema {
|
|
|
45
55
|
* @format path
|
|
46
56
|
*/
|
|
47
57
|
outputPath?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Publish Path
|
|
60
|
+
*
|
|
61
|
+
* The path to the publish directory for the build artifacts
|
|
62
|
+
*
|
|
63
|
+
*
|
|
64
|
+
* @format path
|
|
65
|
+
*/
|
|
66
|
+
publishPath?: string;
|
|
48
67
|
/**
|
|
49
68
|
* Sourcemap
|
|
50
69
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.ts","names":["DocsExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/docs/schema.d.ts","../../../../src/executors/docs/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,
|
|
1
|
+
{"version":3,"file":"executor.d.ts","names":["DocsExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/docs/schema.d.ts","../../../../src/executors/docs/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACPT;;;EDkBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACnBA;;;;ED6BAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCtIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
|
|
@@ -6,7 +6,18 @@ export interface DocsExecutorSchema {
|
|
|
6
6
|
/**
|
|
7
7
|
* Powerlines Configuration File
|
|
8
8
|
*
|
|
9
|
-
* The path to the Powerlines configuration file
|
|
9
|
+
* The path to the Powerlines configuration file. Alias for `configFile`.
|
|
10
|
+
*
|
|
11
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
12
|
+
*
|
|
13
|
+
* @format path
|
|
14
|
+
*/
|
|
15
|
+
config?: string,
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Powerlines Configuration File
|
|
19
|
+
*
|
|
20
|
+
* The path to the Powerlines configuration file. Alias for `config`.
|
|
10
21
|
*
|
|
11
22
|
* @default "{projectRoot}/powerlines.config.ts"
|
|
12
23
|
*
|
|
@@ -45,6 +56,16 @@ export interface DocsExecutorSchema {
|
|
|
45
56
|
*/
|
|
46
57
|
outputPath?: string,
|
|
47
58
|
|
|
59
|
+
/**
|
|
60
|
+
* Publish Path
|
|
61
|
+
*
|
|
62
|
+
* The path to the publish directory for the build artifacts
|
|
63
|
+
*
|
|
64
|
+
*
|
|
65
|
+
* @format path
|
|
66
|
+
*/
|
|
67
|
+
publishPath?: string,
|
|
68
|
+
|
|
48
69
|
/**
|
|
49
70
|
* Sourcemap
|
|
50
71
|
*
|
|
@@ -4,11 +4,19 @@
|
|
|
4
4
|
"description": "A type definition for the Powerlines - Docs executor schema",
|
|
5
5
|
"required": [],
|
|
6
6
|
"properties": {
|
|
7
|
+
"config": {
|
|
8
|
+
"title": "Powerlines Configuration File",
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "path",
|
|
11
|
+
"description": "The path to the Powerlines configuration file. Alias for `configFile`.",
|
|
12
|
+
"id": "#config",
|
|
13
|
+
"default": "{projectRoot}/powerlines.config.ts"
|
|
14
|
+
},
|
|
7
15
|
"configFile": {
|
|
8
16
|
"title": "Powerlines Configuration File",
|
|
9
17
|
"type": "string",
|
|
10
18
|
"format": "path",
|
|
11
|
-
"description": "The path to the Powerlines configuration file",
|
|
19
|
+
"description": "The path to the Powerlines configuration file. Alias for `config`.",
|
|
12
20
|
"id": "#configFile",
|
|
13
21
|
"default": "{projectRoot}/powerlines.config.ts"
|
|
14
22
|
},
|
|
@@ -37,6 +45,13 @@
|
|
|
37
45
|
"description": "The path to the output directory for the build artifacts",
|
|
38
46
|
"id": "#outputPath"
|
|
39
47
|
},
|
|
48
|
+
"publishPath": {
|
|
49
|
+
"title": "Publish Path",
|
|
50
|
+
"type": "string",
|
|
51
|
+
"format": "path",
|
|
52
|
+
"description": "The path to the publish directory for the build artifacts",
|
|
53
|
+
"id": "#publishPath"
|
|
54
|
+
},
|
|
40
55
|
"sourceMap": {
|
|
41
56
|
"title": "Sourcemap",
|
|
42
57
|
"type": "boolean",
|
|
@@ -149,6 +164,7 @@
|
|
|
149
164
|
},
|
|
150
165
|
"type": "object",
|
|
151
166
|
"default": {
|
|
167
|
+
"config": "{projectRoot}/powerlines.config.ts",
|
|
152
168
|
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
153
169
|
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
154
170
|
"format": [
|
|
@@ -10,7 +10,17 @@ interface LintExecutorSchema {
|
|
|
10
10
|
/**
|
|
11
11
|
* Powerlines Configuration File
|
|
12
12
|
*
|
|
13
|
-
* The path to the Powerlines configuration file
|
|
13
|
+
* The path to the Powerlines configuration file. Alias for `configFile`.
|
|
14
|
+
*
|
|
15
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
|
+
*
|
|
17
|
+
* @format path
|
|
18
|
+
*/
|
|
19
|
+
config?: string;
|
|
20
|
+
/**
|
|
21
|
+
* Powerlines Configuration File
|
|
22
|
+
*
|
|
23
|
+
* The path to the Powerlines configuration file. Alias for `config`.
|
|
14
24
|
*
|
|
15
25
|
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
26
|
*
|
|
@@ -45,6 +55,15 @@ interface LintExecutorSchema {
|
|
|
45
55
|
* @format path
|
|
46
56
|
*/
|
|
47
57
|
outputPath?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Publish Path
|
|
60
|
+
*
|
|
61
|
+
* The path to the publish directory for the build artifacts
|
|
62
|
+
*
|
|
63
|
+
*
|
|
64
|
+
* @format path
|
|
65
|
+
*/
|
|
66
|
+
publishPath?: string;
|
|
48
67
|
/**
|
|
49
68
|
* Sourcemap
|
|
50
69
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.mts","names":["LintExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/lint/schema.d.ts","../../../../src/executors/lint/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,
|
|
1
|
+
{"version":3,"file":"executor.d.mts","names":["LintExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/lint/schema.d.ts","../../../../src/executors/lint/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACPT;;;EDkBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACnBA;;;;ED6BAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCtIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
|
|
@@ -10,7 +10,17 @@ interface LintExecutorSchema {
|
|
|
10
10
|
/**
|
|
11
11
|
* Powerlines Configuration File
|
|
12
12
|
*
|
|
13
|
-
* The path to the Powerlines configuration file
|
|
13
|
+
* The path to the Powerlines configuration file. Alias for `configFile`.
|
|
14
|
+
*
|
|
15
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
|
+
*
|
|
17
|
+
* @format path
|
|
18
|
+
*/
|
|
19
|
+
config?: string;
|
|
20
|
+
/**
|
|
21
|
+
* Powerlines Configuration File
|
|
22
|
+
*
|
|
23
|
+
* The path to the Powerlines configuration file. Alias for `config`.
|
|
14
24
|
*
|
|
15
25
|
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
26
|
*
|
|
@@ -45,6 +55,15 @@ interface LintExecutorSchema {
|
|
|
45
55
|
* @format path
|
|
46
56
|
*/
|
|
47
57
|
outputPath?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Publish Path
|
|
60
|
+
*
|
|
61
|
+
* The path to the publish directory for the build artifacts
|
|
62
|
+
*
|
|
63
|
+
*
|
|
64
|
+
* @format path
|
|
65
|
+
*/
|
|
66
|
+
publishPath?: string;
|
|
48
67
|
/**
|
|
49
68
|
* Sourcemap
|
|
50
69
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.ts","names":["LintExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/lint/schema.d.ts","../../../../src/executors/lint/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,
|
|
1
|
+
{"version":3,"file":"executor.d.ts","names":["LintExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/lint/schema.d.ts","../../../../src/executors/lint/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACPT;;;EDkBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACnBA;;;;ED6BAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCtIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
|
|
@@ -6,7 +6,18 @@ export interface LintExecutorSchema {
|
|
|
6
6
|
/**
|
|
7
7
|
* Powerlines Configuration File
|
|
8
8
|
*
|
|
9
|
-
* The path to the Powerlines configuration file
|
|
9
|
+
* The path to the Powerlines configuration file. Alias for `configFile`.
|
|
10
|
+
*
|
|
11
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
12
|
+
*
|
|
13
|
+
* @format path
|
|
14
|
+
*/
|
|
15
|
+
config?: string,
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Powerlines Configuration File
|
|
19
|
+
*
|
|
20
|
+
* The path to the Powerlines configuration file. Alias for `config`.
|
|
10
21
|
*
|
|
11
22
|
* @default "{projectRoot}/powerlines.config.ts"
|
|
12
23
|
*
|
|
@@ -45,6 +56,16 @@ export interface LintExecutorSchema {
|
|
|
45
56
|
*/
|
|
46
57
|
outputPath?: string,
|
|
47
58
|
|
|
59
|
+
/**
|
|
60
|
+
* Publish Path
|
|
61
|
+
*
|
|
62
|
+
* The path to the publish directory for the build artifacts
|
|
63
|
+
*
|
|
64
|
+
*
|
|
65
|
+
* @format path
|
|
66
|
+
*/
|
|
67
|
+
publishPath?: string,
|
|
68
|
+
|
|
48
69
|
/**
|
|
49
70
|
* Sourcemap
|
|
50
71
|
*
|
|
@@ -4,11 +4,19 @@
|
|
|
4
4
|
"description": "A type definition for the Powerlines - Lint executor schema",
|
|
5
5
|
"required": [],
|
|
6
6
|
"properties": {
|
|
7
|
+
"config": {
|
|
8
|
+
"title": "Powerlines Configuration File",
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "path",
|
|
11
|
+
"description": "The path to the Powerlines configuration file. Alias for `configFile`.",
|
|
12
|
+
"id": "#config",
|
|
13
|
+
"default": "{projectRoot}/powerlines.config.ts"
|
|
14
|
+
},
|
|
7
15
|
"configFile": {
|
|
8
16
|
"title": "Powerlines Configuration File",
|
|
9
17
|
"type": "string",
|
|
10
18
|
"format": "path",
|
|
11
|
-
"description": "The path to the Powerlines configuration file",
|
|
19
|
+
"description": "The path to the Powerlines configuration file. Alias for `config`.",
|
|
12
20
|
"id": "#configFile",
|
|
13
21
|
"default": "{projectRoot}/powerlines.config.ts"
|
|
14
22
|
},
|
|
@@ -37,6 +45,13 @@
|
|
|
37
45
|
"description": "The path to the output directory for the build artifacts",
|
|
38
46
|
"id": "#outputPath"
|
|
39
47
|
},
|
|
48
|
+
"publishPath": {
|
|
49
|
+
"title": "Publish Path",
|
|
50
|
+
"type": "string",
|
|
51
|
+
"format": "path",
|
|
52
|
+
"description": "The path to the publish directory for the build artifacts",
|
|
53
|
+
"id": "#publishPath"
|
|
54
|
+
},
|
|
40
55
|
"sourceMap": {
|
|
41
56
|
"title": "Sourcemap",
|
|
42
57
|
"type": "boolean",
|
|
@@ -149,6 +164,7 @@
|
|
|
149
164
|
},
|
|
150
165
|
"type": "object",
|
|
151
166
|
"default": {
|
|
167
|
+
"config": "{projectRoot}/powerlines.config.ts",
|
|
152
168
|
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
153
169
|
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
154
170
|
"format": [
|
|
@@ -10,7 +10,17 @@ interface PrepareExecutorSchema {
|
|
|
10
10
|
/**
|
|
11
11
|
* Powerlines Configuration File
|
|
12
12
|
*
|
|
13
|
-
* The path to the Powerlines configuration file
|
|
13
|
+
* The path to the Powerlines configuration file. Alias for `configFile`.
|
|
14
|
+
*
|
|
15
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
|
+
*
|
|
17
|
+
* @format path
|
|
18
|
+
*/
|
|
19
|
+
config?: string;
|
|
20
|
+
/**
|
|
21
|
+
* Powerlines Configuration File
|
|
22
|
+
*
|
|
23
|
+
* The path to the Powerlines configuration file. Alias for `config`.
|
|
14
24
|
*
|
|
15
25
|
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
26
|
*
|
|
@@ -45,6 +55,15 @@ interface PrepareExecutorSchema {
|
|
|
45
55
|
* @format path
|
|
46
56
|
*/
|
|
47
57
|
outputPath?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Publish Path
|
|
60
|
+
*
|
|
61
|
+
* The path to the publish directory for the build artifacts
|
|
62
|
+
*
|
|
63
|
+
*
|
|
64
|
+
* @format path
|
|
65
|
+
*/
|
|
66
|
+
publishPath?: string;
|
|
48
67
|
/**
|
|
49
68
|
* Sourcemap
|
|
50
69
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.mts","names":["PrepareExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/prepare/schema.d.ts","../../../../src/executors/prepare/executor.ts"],"mappings":";;;;;;;;UAIiBA,qBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,
|
|
1
|
+
{"version":3,"file":"executor.d.mts","names":["PrepareExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/prepare/schema.d.ts","../../../../src/executors/prepare/executor.ts"],"mappings":";;;;;;;;UAIiBA,qBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACNT;;;EDiBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACTA;;;;EDmBAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCrIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,YAAqC,qBAAA,GAC9C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAiBL,QAAA,EAAU,eAAA,CAAgB,qBAAA"}
|
|
@@ -10,7 +10,17 @@ interface PrepareExecutorSchema {
|
|
|
10
10
|
/**
|
|
11
11
|
* Powerlines Configuration File
|
|
12
12
|
*
|
|
13
|
-
* The path to the Powerlines configuration file
|
|
13
|
+
* The path to the Powerlines configuration file. Alias for `configFile`.
|
|
14
|
+
*
|
|
15
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
|
+
*
|
|
17
|
+
* @format path
|
|
18
|
+
*/
|
|
19
|
+
config?: string;
|
|
20
|
+
/**
|
|
21
|
+
* Powerlines Configuration File
|
|
22
|
+
*
|
|
23
|
+
* The path to the Powerlines configuration file. Alias for `config`.
|
|
14
24
|
*
|
|
15
25
|
* @default "{projectRoot}/powerlines.config.ts"
|
|
16
26
|
*
|
|
@@ -45,6 +55,15 @@ interface PrepareExecutorSchema {
|
|
|
45
55
|
* @format path
|
|
46
56
|
*/
|
|
47
57
|
outputPath?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Publish Path
|
|
60
|
+
*
|
|
61
|
+
* The path to the publish directory for the build artifacts
|
|
62
|
+
*
|
|
63
|
+
*
|
|
64
|
+
* @format path
|
|
65
|
+
*/
|
|
66
|
+
publishPath?: string;
|
|
48
67
|
/**
|
|
49
68
|
* Sourcemap
|
|
50
69
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.ts","names":["PrepareExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/prepare/schema.d.ts","../../../../src/executors/prepare/executor.ts"],"mappings":";;;;;;;;UAIiBA,qBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,
|
|
1
|
+
{"version":3,"file":"executor.d.ts","names":["PrepareExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/prepare/schema.d.ts","../../../../src/executors/prepare/executor.ts"],"mappings":";;;;;;;;UAIiBA,qBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACNT;;;EDiBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACTA;;;;EDmBAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCrIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,YAAqC,qBAAA,GAC9C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAiBL,QAAA,EAAU,eAAA,CAAgB,qBAAA"}
|
|
@@ -6,7 +6,18 @@ export interface PrepareExecutorSchema {
|
|
|
6
6
|
/**
|
|
7
7
|
* Powerlines Configuration File
|
|
8
8
|
*
|
|
9
|
-
* The path to the Powerlines configuration file
|
|
9
|
+
* The path to the Powerlines configuration file. Alias for `configFile`.
|
|
10
|
+
*
|
|
11
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
12
|
+
*
|
|
13
|
+
* @format path
|
|
14
|
+
*/
|
|
15
|
+
config?: string,
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Powerlines Configuration File
|
|
19
|
+
*
|
|
20
|
+
* The path to the Powerlines configuration file. Alias for `config`.
|
|
10
21
|
*
|
|
11
22
|
* @default "{projectRoot}/powerlines.config.ts"
|
|
12
23
|
*
|
|
@@ -45,6 +56,16 @@ export interface PrepareExecutorSchema {
|
|
|
45
56
|
*/
|
|
46
57
|
outputPath?: string,
|
|
47
58
|
|
|
59
|
+
/**
|
|
60
|
+
* Publish Path
|
|
61
|
+
*
|
|
62
|
+
* The path to the publish directory for the build artifacts
|
|
63
|
+
*
|
|
64
|
+
*
|
|
65
|
+
* @format path
|
|
66
|
+
*/
|
|
67
|
+
publishPath?: string,
|
|
68
|
+
|
|
48
69
|
/**
|
|
49
70
|
* Sourcemap
|
|
50
71
|
*
|
|
@@ -4,11 +4,19 @@
|
|
|
4
4
|
"description": "A type definition for the Powerlines - Prepare executor schema",
|
|
5
5
|
"required": [],
|
|
6
6
|
"properties": {
|
|
7
|
+
"config": {
|
|
8
|
+
"title": "Powerlines Configuration File",
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "path",
|
|
11
|
+
"description": "The path to the Powerlines configuration file. Alias for `configFile`.",
|
|
12
|
+
"id": "#config",
|
|
13
|
+
"default": "{projectRoot}/powerlines.config.ts"
|
|
14
|
+
},
|
|
7
15
|
"configFile": {
|
|
8
16
|
"title": "Powerlines Configuration File",
|
|
9
17
|
"type": "string",
|
|
10
18
|
"format": "path",
|
|
11
|
-
"description": "The path to the Powerlines configuration file",
|
|
19
|
+
"description": "The path to the Powerlines configuration file. Alias for `config`.",
|
|
12
20
|
"id": "#configFile",
|
|
13
21
|
"default": "{projectRoot}/powerlines.config.ts"
|
|
14
22
|
},
|
|
@@ -37,6 +45,13 @@
|
|
|
37
45
|
"description": "The path to the output directory for the build artifacts",
|
|
38
46
|
"id": "#outputPath"
|
|
39
47
|
},
|
|
48
|
+
"publishPath": {
|
|
49
|
+
"title": "Publish Path",
|
|
50
|
+
"type": "string",
|
|
51
|
+
"format": "path",
|
|
52
|
+
"description": "The path to the publish directory for the build artifacts",
|
|
53
|
+
"id": "#publishPath"
|
|
54
|
+
},
|
|
40
55
|
"sourceMap": {
|
|
41
56
|
"title": "Sourcemap",
|
|
42
57
|
"type": "boolean",
|
|
@@ -149,6 +164,7 @@
|
|
|
149
164
|
},
|
|
150
165
|
"type": "object",
|
|
151
166
|
"default": {
|
|
167
|
+
"config": "{projectRoot}/powerlines.config.ts",
|
|
152
168
|
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
153
169
|
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
154
170
|
"format": [
|
|
@@ -116,9 +116,9 @@ function createNxPlugin(opts) {
|
|
|
116
116
|
dependsOn: options?.clean?.dependsOn ?? [`^${options?.clean?.targetName || "clean"}`],
|
|
117
117
|
defaultConfiguration: options?.clean?.defaultConfiguration || "production",
|
|
118
118
|
options: {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
119
|
+
projectType: projectConfig.projectType,
|
|
120
|
+
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
121
|
+
publishPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
122
122
|
},
|
|
123
123
|
configurations: {
|
|
124
124
|
production: { mode: "production" },
|
|
@@ -137,10 +137,9 @@ function createNxPlugin(opts) {
|
|
|
137
137
|
dependsOn: options?.prepare?.dependsOn ?? [`^${options?.prepare?.targetName || "build"}`, options?.clean !== false && `${options?.clean?.targetName || "clean"}`].filter(Boolean),
|
|
138
138
|
defaultConfiguration: options?.prepare?.defaultConfiguration || "production",
|
|
139
139
|
options: {
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
skipCache: userConfig.skipCache
|
|
140
|
+
projectType: projectConfig.projectType,
|
|
141
|
+
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
142
|
+
publishPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
144
143
|
},
|
|
145
144
|
configurations: {
|
|
146
145
|
production: { mode: "production" },
|
|
@@ -159,11 +158,9 @@ function createNxPlugin(opts) {
|
|
|
159
158
|
dependsOn: options?.build?.dependsOn ?? [`^${options?.build?.targetName || "build"}`, userConfig.skipCache ? void 0 : (0, _stryke_type_checks_is_set_object.isSetObject)(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"].filter(Boolean),
|
|
160
159
|
defaultConfiguration: options?.build?.defaultConfiguration || "production",
|
|
161
160
|
options: {
|
|
162
|
-
|
|
163
|
-
outputPath:
|
|
164
|
-
|
|
165
|
-
autoInstall: userConfig.autoInstall,
|
|
166
|
-
skipCache: userConfig.skipCache
|
|
161
|
+
projectType: projectConfig.projectType,
|
|
162
|
+
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
163
|
+
publishPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
167
164
|
},
|
|
168
165
|
configurations: {
|
|
169
166
|
production: { mode: "production" },
|
|
@@ -182,10 +179,9 @@ function createNxPlugin(opts) {
|
|
|
182
179
|
dependsOn: options?.lint?.dependsOn ?? [`^${options?.lint?.targetName || "lint"}`, userConfig.skipCache ? void 0 : (0, _stryke_type_checks_is_set_object.isSetObject)(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"].filter(Boolean),
|
|
183
180
|
defaultConfiguration: options?.lint?.defaultConfiguration || "production",
|
|
184
181
|
options: {
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
skipCache: userConfig.skipCache
|
|
182
|
+
projectType: projectConfig.projectType,
|
|
183
|
+
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
184
|
+
publishPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
189
185
|
},
|
|
190
186
|
configurations: {
|
|
191
187
|
production: { mode: "production" },
|
|
@@ -208,10 +204,9 @@ function createNxPlugin(opts) {
|
|
|
208
204
|
].filter(Boolean),
|
|
209
205
|
defaultConfiguration: options?.docs?.defaultConfiguration || "production",
|
|
210
206
|
options: {
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
skipCache: userConfig.skipCache
|
|
207
|
+
projectType: projectConfig.projectType,
|
|
208
|
+
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
209
|
+
publishPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
215
210
|
},
|
|
216
211
|
configurations: {
|
|
217
212
|
production: { mode: "production" },
|
|
@@ -233,10 +228,9 @@ function createNxPlugin(opts) {
|
|
|
233
228
|
].filter(Boolean),
|
|
234
229
|
defaultConfiguration: options?.deploy?.defaultConfiguration || "production",
|
|
235
230
|
options: {
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
skipCache: userConfig.skipCache
|
|
231
|
+
projectType: projectConfig.projectType,
|
|
232
|
+
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
233
|
+
publishPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
240
234
|
},
|
|
241
235
|
configurations: {
|
|
242
236
|
production: { mode: "production" },
|
|
@@ -248,11 +242,11 @@ function createNxPlugin(opts) {
|
|
|
248
242
|
}
|
|
249
243
|
};
|
|
250
244
|
(0, _storm_software_workspace_tools_utils_project_tags.setDefaultProjectTags)(projectConfig, name);
|
|
251
|
-
(0, _storm_software_workspace_tools_utils_project_tags.addProjectTag)(projectConfig, framework,
|
|
245
|
+
(0, _storm_software_workspace_tools_utils_project_tags.addProjectTag)(projectConfig, framework, projectConfig.projectType || "library", { overwrite: true });
|
|
252
246
|
if (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Completed preparing Nx configuration for project in root directory ${projectRoot}.`);
|
|
253
247
|
return { projects: { [root]: (0, defu.default)(projectConfig, {
|
|
254
248
|
name: (0, _stryke_string_format_kebab_case.kebabCase)(userConfig.name),
|
|
255
|
-
projectType:
|
|
249
|
+
projectType: projectConfig.projectType || "library",
|
|
256
250
|
root,
|
|
257
251
|
sourceRoot: (0, _stryke_path_join_paths.joinPaths)(root, "src"),
|
|
258
252
|
targets
|