@powerlines/nx 0.11.291 → 0.11.293
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 +4 -1
- package/dist/src/base/base-executor.mjs +4 -1
- package/dist/src/base/base-executor.mjs.map +1 -1
- package/dist/src/base/base-executor.schema.d.mts +16 -3
- package/dist/src/base/base-executor.schema.d.mts.map +1 -1
- package/dist/src/base/base-executor.schema.d.ts +16 -3
- package/dist/src/base/base-executor.schema.d.ts.map +1 -1
- package/dist/src/base/base-executor.schema.json +15 -6
- package/dist/src/base/base-executor.untyped.js +10 -4
- package/dist/src/base/base-executor.untyped.mjs +10 -4
- package/dist/src/base/base-executor.untyped.mjs.map +1 -1
- package/dist/src/executors/build/executor.d.mts +16 -3
- package/dist/src/executors/build/executor.d.mts.map +1 -1
- package/dist/src/executors/build/executor.d.ts +16 -3
- package/dist/src/executors/build/executor.d.ts.map +1 -1
- package/dist/src/executors/build/schema.d.ts +11 -3
- package/dist/src/executors/build/schema.json +14 -5
- package/dist/src/executors/clean/executor.d.mts +16 -3
- package/dist/src/executors/clean/executor.d.mts.map +1 -1
- package/dist/src/executors/clean/executor.d.ts +16 -3
- package/dist/src/executors/clean/executor.d.ts.map +1 -1
- package/dist/src/executors/clean/schema.d.ts +11 -3
- package/dist/src/executors/clean/schema.json +15 -6
- package/dist/src/executors/docs/executor.d.mts +16 -3
- package/dist/src/executors/docs/executor.d.mts.map +1 -1
- package/dist/src/executors/docs/executor.d.ts +16 -3
- package/dist/src/executors/docs/executor.d.ts.map +1 -1
- package/dist/src/executors/docs/schema.d.ts +11 -3
- package/dist/src/executors/docs/schema.json +15 -6
- package/dist/src/executors/lint/executor.d.mts +16 -3
- package/dist/src/executors/lint/executor.d.mts.map +1 -1
- package/dist/src/executors/lint/executor.d.ts +16 -3
- package/dist/src/executors/lint/executor.d.ts.map +1 -1
- package/dist/src/executors/lint/schema.d.ts +11 -3
- package/dist/src/executors/lint/schema.json +15 -6
- package/dist/src/executors/prepare/executor.d.mts +16 -3
- package/dist/src/executors/prepare/executor.d.mts.map +1 -1
- package/dist/src/executors/prepare/executor.d.ts +16 -3
- package/dist/src/executors/prepare/executor.d.ts.map +1 -1
- package/dist/src/executors/prepare/schema.d.ts +11 -3
- package/dist/src/executors/prepare/schema.json +15 -6
- package/dist/src/helpers/plugin-utilities.js +6 -6
- package/dist/src/helpers/plugin-utilities.mjs +6 -6
- package/dist/src/helpers/plugin-utilities.mjs.map +1 -1
- package/package.json +10 -10
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"description": "The path to the output directory for the build artifacts",
|
|
46
46
|
"id": "#outputPath"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
49
|
-
"title": "
|
|
50
|
-
"description": "
|
|
48
|
+
"copyPath": {
|
|
49
|
+
"title": "Copy Path",
|
|
50
|
+
"description": "A directory path to copy the build artifacts into",
|
|
51
51
|
"oneOf": [
|
|
52
52
|
{
|
|
53
53
|
"type": "string",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
]
|
|
61
61
|
}
|
|
62
62
|
],
|
|
63
|
-
"id": "#
|
|
63
|
+
"id": "#copyPath",
|
|
64
64
|
"type": "any",
|
|
65
65
|
"default": {}
|
|
66
66
|
},
|
|
@@ -160,6 +160,14 @@
|
|
|
160
160
|
"description": "The `define` values",
|
|
161
161
|
"id": "#define",
|
|
162
162
|
"default": {}
|
|
163
|
+
},
|
|
164
|
+
"assets": {
|
|
165
|
+
"title": "Assets",
|
|
166
|
+
"type": "any",
|
|
167
|
+
"tsType": "Array<{ input?: string; output?: string; glob: string; ignore?: string[]; dot?: boolean; }>",
|
|
168
|
+
"description": "The `assets` values",
|
|
169
|
+
"id": "#assets",
|
|
170
|
+
"default": {}
|
|
163
171
|
}
|
|
164
172
|
},
|
|
165
173
|
"type": "object",
|
|
@@ -167,7 +175,7 @@
|
|
|
167
175
|
"config": "{projectRoot}/powerlines.config.ts",
|
|
168
176
|
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
169
177
|
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
170
|
-
"
|
|
178
|
+
"copyPath": {},
|
|
171
179
|
"format": [
|
|
172
180
|
"cjs",
|
|
173
181
|
"esm"
|
|
@@ -175,6 +183,7 @@
|
|
|
175
183
|
"platform": "neutral",
|
|
176
184
|
"external": [],
|
|
177
185
|
"noExternal": [],
|
|
178
|
-
"define": {}
|
|
186
|
+
"define": {},
|
|
187
|
+
"assets": {}
|
|
179
188
|
}
|
|
180
189
|
}
|
|
@@ -56,14 +56,14 @@ interface DocsExecutorSchema {
|
|
|
56
56
|
*/
|
|
57
57
|
outputPath?: string;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Copy Path
|
|
60
60
|
*
|
|
61
|
-
*
|
|
61
|
+
* A directory path to copy the build artifacts into
|
|
62
62
|
*
|
|
63
63
|
*
|
|
64
64
|
* @oneOf [object Object],[object Object]
|
|
65
65
|
*/
|
|
66
|
-
|
|
66
|
+
copyPath?: any;
|
|
67
67
|
/**
|
|
68
68
|
* Sourcemap
|
|
69
69
|
*
|
|
@@ -135,6 +135,19 @@ interface DocsExecutorSchema {
|
|
|
135
135
|
*
|
|
136
136
|
*/
|
|
137
137
|
define?: Record<string, string>;
|
|
138
|
+
/**
|
|
139
|
+
* Assets
|
|
140
|
+
*
|
|
141
|
+
* The `assets` values
|
|
142
|
+
*
|
|
143
|
+
*/
|
|
144
|
+
assets?: Array<{
|
|
145
|
+
input?: string;
|
|
146
|
+
output?: string;
|
|
147
|
+
glob: string;
|
|
148
|
+
ignore?: string[];
|
|
149
|
+
dot?: boolean;
|
|
150
|
+
}>;
|
|
138
151
|
/**
|
|
139
152
|
* Auto Install
|
|
140
153
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.mts","names":["DocsExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","
|
|
1
|
+
{"version":3,"file":"executor.d.mts","names":["DocsExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","copyPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","assets","output","glob","ignore","dot","autoInstall","skipCache"],"sources":["../../../../src/executors/docs/schema.d.ts","../../../../src/executors/docs/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;EA4Ic;;;;;;;;;EAjIdC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;;;;EAWRK,QAAAA;;;;AClBD;;;;;ED4BCC,UAAAA;;;;;;;;;EAUAC,QAAAA;;;AC7BA;;;;EDqCAC,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,MAAAA,GAASjB,KAAAA;IAAQI,KAAAA;IAAgBc,MAAAA;IAAiBC,IAAAA;IAAcC,MAAAA;IAAmBC,GAAAA;EAAAA;;;;;;;EAQnFC,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBC9IqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
|
|
@@ -56,14 +56,14 @@ interface DocsExecutorSchema {
|
|
|
56
56
|
*/
|
|
57
57
|
outputPath?: string;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Copy Path
|
|
60
60
|
*
|
|
61
|
-
*
|
|
61
|
+
* A directory path to copy the build artifacts into
|
|
62
62
|
*
|
|
63
63
|
*
|
|
64
64
|
* @oneOf [object Object],[object Object]
|
|
65
65
|
*/
|
|
66
|
-
|
|
66
|
+
copyPath?: any;
|
|
67
67
|
/**
|
|
68
68
|
* Sourcemap
|
|
69
69
|
*
|
|
@@ -135,6 +135,19 @@ interface DocsExecutorSchema {
|
|
|
135
135
|
*
|
|
136
136
|
*/
|
|
137
137
|
define?: Record<string, string>;
|
|
138
|
+
/**
|
|
139
|
+
* Assets
|
|
140
|
+
*
|
|
141
|
+
* The `assets` values
|
|
142
|
+
*
|
|
143
|
+
*/
|
|
144
|
+
assets?: Array<{
|
|
145
|
+
input?: string;
|
|
146
|
+
output?: string;
|
|
147
|
+
glob: string;
|
|
148
|
+
ignore?: string[];
|
|
149
|
+
dot?: boolean;
|
|
150
|
+
}>;
|
|
138
151
|
/**
|
|
139
152
|
* Auto Install
|
|
140
153
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.ts","names":["DocsExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","
|
|
1
|
+
{"version":3,"file":"executor.d.ts","names":["DocsExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","copyPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","assets","output","glob","ignore","dot","autoInstall","skipCache"],"sources":["../../../../src/executors/docs/schema.d.ts","../../../../src/executors/docs/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;EA4Ic;;;;;;;;;EAjIdC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;;;;EAWRK,QAAAA;;;;AClBD;;;;;ED4BCC,UAAAA;;;;;;;;;EAUAC,QAAAA;;;AC7BA;;;;EDqCAC,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,MAAAA,GAASjB,KAAAA;IAAQI,KAAAA;IAAgBc,MAAAA;IAAiBC,IAAAA;IAAcC,MAAAA;IAAmBC,GAAAA;EAAAA;;;;;;;EAQnFC,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBC9IqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
|
|
@@ -57,14 +57,14 @@ export interface DocsExecutorSchema {
|
|
|
57
57
|
outputPath?: string,
|
|
58
58
|
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Copy Path
|
|
61
61
|
*
|
|
62
|
-
*
|
|
62
|
+
* A directory path to copy the build artifacts into
|
|
63
63
|
*
|
|
64
64
|
*
|
|
65
65
|
* @oneOf [object Object],[object Object]
|
|
66
66
|
*/
|
|
67
|
-
|
|
67
|
+
copyPath?: any,
|
|
68
68
|
|
|
69
69
|
/**
|
|
70
70
|
* Sourcemap
|
|
@@ -146,6 +146,14 @@ export interface DocsExecutorSchema {
|
|
|
146
146
|
*/
|
|
147
147
|
define?: Record<string, string>,
|
|
148
148
|
|
|
149
|
+
/**
|
|
150
|
+
* Assets
|
|
151
|
+
*
|
|
152
|
+
* The `assets` values
|
|
153
|
+
*
|
|
154
|
+
*/
|
|
155
|
+
assets?: Array<{ input?: string; output?: string; glob: string; ignore?: string[]; dot?: boolean; }>,
|
|
156
|
+
|
|
149
157
|
/**
|
|
150
158
|
* Auto Install
|
|
151
159
|
*
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"description": "The path to the output directory for the build artifacts",
|
|
46
46
|
"id": "#outputPath"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
49
|
-
"title": "
|
|
50
|
-
"description": "
|
|
48
|
+
"copyPath": {
|
|
49
|
+
"title": "Copy Path",
|
|
50
|
+
"description": "A directory path to copy the build artifacts into",
|
|
51
51
|
"oneOf": [
|
|
52
52
|
{
|
|
53
53
|
"type": "string",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
]
|
|
61
61
|
}
|
|
62
62
|
],
|
|
63
|
-
"id": "#
|
|
63
|
+
"id": "#copyPath",
|
|
64
64
|
"type": "any",
|
|
65
65
|
"default": {}
|
|
66
66
|
},
|
|
@@ -161,6 +161,14 @@
|
|
|
161
161
|
"id": "#define",
|
|
162
162
|
"default": {}
|
|
163
163
|
},
|
|
164
|
+
"assets": {
|
|
165
|
+
"title": "Assets",
|
|
166
|
+
"type": "any",
|
|
167
|
+
"tsType": "Array<{ input?: string; output?: string; glob: string; ignore?: string[]; dot?: boolean; }>",
|
|
168
|
+
"description": "The `assets` values",
|
|
169
|
+
"id": "#assets",
|
|
170
|
+
"default": {}
|
|
171
|
+
},
|
|
164
172
|
"autoInstall": {
|
|
165
173
|
"title": "Auto Install",
|
|
166
174
|
"type": "boolean",
|
|
@@ -179,7 +187,7 @@
|
|
|
179
187
|
"config": "{projectRoot}/powerlines.config.ts",
|
|
180
188
|
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
181
189
|
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
182
|
-
"
|
|
190
|
+
"copyPath": {},
|
|
183
191
|
"format": [
|
|
184
192
|
"cjs",
|
|
185
193
|
"esm"
|
|
@@ -187,6 +195,7 @@
|
|
|
187
195
|
"platform": "neutral",
|
|
188
196
|
"external": [],
|
|
189
197
|
"noExternal": [],
|
|
190
|
-
"define": {}
|
|
198
|
+
"define": {},
|
|
199
|
+
"assets": {}
|
|
191
200
|
}
|
|
192
201
|
}
|
|
@@ -56,14 +56,14 @@ interface LintExecutorSchema {
|
|
|
56
56
|
*/
|
|
57
57
|
outputPath?: string;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Copy Path
|
|
60
60
|
*
|
|
61
|
-
*
|
|
61
|
+
* A directory path to copy the build artifacts into
|
|
62
62
|
*
|
|
63
63
|
*
|
|
64
64
|
* @oneOf [object Object],[object Object]
|
|
65
65
|
*/
|
|
66
|
-
|
|
66
|
+
copyPath?: any;
|
|
67
67
|
/**
|
|
68
68
|
* Sourcemap
|
|
69
69
|
*
|
|
@@ -135,6 +135,19 @@ interface LintExecutorSchema {
|
|
|
135
135
|
*
|
|
136
136
|
*/
|
|
137
137
|
define?: Record<string, string>;
|
|
138
|
+
/**
|
|
139
|
+
* Assets
|
|
140
|
+
*
|
|
141
|
+
* The `assets` values
|
|
142
|
+
*
|
|
143
|
+
*/
|
|
144
|
+
assets?: Array<{
|
|
145
|
+
input?: string;
|
|
146
|
+
output?: string;
|
|
147
|
+
glob: string;
|
|
148
|
+
ignore?: string[];
|
|
149
|
+
dot?: boolean;
|
|
150
|
+
}>;
|
|
138
151
|
/**
|
|
139
152
|
* Auto Install
|
|
140
153
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.mts","names":["LintExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","
|
|
1
|
+
{"version":3,"file":"executor.d.mts","names":["LintExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","copyPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","assets","output","glob","ignore","dot","autoInstall","skipCache"],"sources":["../../../../src/executors/lint/schema.d.ts","../../../../src/executors/lint/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;EA4Ic;;;;;;;;;EAjIdC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;;;;EAWRK,QAAAA;;;;AClBD;;;;;ED4BCC,UAAAA;;;;;;;;;EAUAC,QAAAA;;;AC7BA;;;;EDqCAC,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,MAAAA,GAASjB,KAAAA;IAAQI,KAAAA;IAAgBc,MAAAA;IAAiBC,IAAAA;IAAcC,MAAAA;IAAmBC,GAAAA;EAAAA;;;;;;;EAQnFC,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBC9IqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
|
|
@@ -56,14 +56,14 @@ interface LintExecutorSchema {
|
|
|
56
56
|
*/
|
|
57
57
|
outputPath?: string;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Copy Path
|
|
60
60
|
*
|
|
61
|
-
*
|
|
61
|
+
* A directory path to copy the build artifacts into
|
|
62
62
|
*
|
|
63
63
|
*
|
|
64
64
|
* @oneOf [object Object],[object Object]
|
|
65
65
|
*/
|
|
66
|
-
|
|
66
|
+
copyPath?: any;
|
|
67
67
|
/**
|
|
68
68
|
* Sourcemap
|
|
69
69
|
*
|
|
@@ -135,6 +135,19 @@ interface LintExecutorSchema {
|
|
|
135
135
|
*
|
|
136
136
|
*/
|
|
137
137
|
define?: Record<string, string>;
|
|
138
|
+
/**
|
|
139
|
+
* Assets
|
|
140
|
+
*
|
|
141
|
+
* The `assets` values
|
|
142
|
+
*
|
|
143
|
+
*/
|
|
144
|
+
assets?: Array<{
|
|
145
|
+
input?: string;
|
|
146
|
+
output?: string;
|
|
147
|
+
glob: string;
|
|
148
|
+
ignore?: string[];
|
|
149
|
+
dot?: boolean;
|
|
150
|
+
}>;
|
|
138
151
|
/**
|
|
139
152
|
* Auto Install
|
|
140
153
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.ts","names":["LintExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","
|
|
1
|
+
{"version":3,"file":"executor.d.ts","names":["LintExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","copyPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","assets","output","glob","ignore","dot","autoInstall","skipCache"],"sources":["../../../../src/executors/lint/schema.d.ts","../../../../src/executors/lint/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;EA4Ic;;;;;;;;;EAjIdC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;;;;EAWRK,QAAAA;;;;AClBD;;;;;ED4BCC,UAAAA;;;;;;;;;EAUAC,QAAAA;;;AC7BA;;;;EDqCAC,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,MAAAA,GAASjB,KAAAA;IAAQI,KAAAA;IAAgBc,MAAAA;IAAiBC,IAAAA;IAAcC,MAAAA;IAAmBC,GAAAA;EAAAA;;;;;;;EAQnFC,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBC9IqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
|
|
@@ -57,14 +57,14 @@ export interface LintExecutorSchema {
|
|
|
57
57
|
outputPath?: string,
|
|
58
58
|
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Copy Path
|
|
61
61
|
*
|
|
62
|
-
*
|
|
62
|
+
* A directory path to copy the build artifacts into
|
|
63
63
|
*
|
|
64
64
|
*
|
|
65
65
|
* @oneOf [object Object],[object Object]
|
|
66
66
|
*/
|
|
67
|
-
|
|
67
|
+
copyPath?: any,
|
|
68
68
|
|
|
69
69
|
/**
|
|
70
70
|
* Sourcemap
|
|
@@ -146,6 +146,14 @@ export interface LintExecutorSchema {
|
|
|
146
146
|
*/
|
|
147
147
|
define?: Record<string, string>,
|
|
148
148
|
|
|
149
|
+
/**
|
|
150
|
+
* Assets
|
|
151
|
+
*
|
|
152
|
+
* The `assets` values
|
|
153
|
+
*
|
|
154
|
+
*/
|
|
155
|
+
assets?: Array<{ input?: string; output?: string; glob: string; ignore?: string[]; dot?: boolean; }>,
|
|
156
|
+
|
|
149
157
|
/**
|
|
150
158
|
* Auto Install
|
|
151
159
|
*
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"description": "The path to the output directory for the build artifacts",
|
|
46
46
|
"id": "#outputPath"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
49
|
-
"title": "
|
|
50
|
-
"description": "
|
|
48
|
+
"copyPath": {
|
|
49
|
+
"title": "Copy Path",
|
|
50
|
+
"description": "A directory path to copy the build artifacts into",
|
|
51
51
|
"oneOf": [
|
|
52
52
|
{
|
|
53
53
|
"type": "string",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
]
|
|
61
61
|
}
|
|
62
62
|
],
|
|
63
|
-
"id": "#
|
|
63
|
+
"id": "#copyPath",
|
|
64
64
|
"type": "any",
|
|
65
65
|
"default": {}
|
|
66
66
|
},
|
|
@@ -161,6 +161,14 @@
|
|
|
161
161
|
"id": "#define",
|
|
162
162
|
"default": {}
|
|
163
163
|
},
|
|
164
|
+
"assets": {
|
|
165
|
+
"title": "Assets",
|
|
166
|
+
"type": "any",
|
|
167
|
+
"tsType": "Array<{ input?: string; output?: string; glob: string; ignore?: string[]; dot?: boolean; }>",
|
|
168
|
+
"description": "The `assets` values",
|
|
169
|
+
"id": "#assets",
|
|
170
|
+
"default": {}
|
|
171
|
+
},
|
|
164
172
|
"autoInstall": {
|
|
165
173
|
"title": "Auto Install",
|
|
166
174
|
"type": "boolean",
|
|
@@ -179,7 +187,7 @@
|
|
|
179
187
|
"config": "{projectRoot}/powerlines.config.ts",
|
|
180
188
|
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
181
189
|
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
182
|
-
"
|
|
190
|
+
"copyPath": {},
|
|
183
191
|
"format": [
|
|
184
192
|
"cjs",
|
|
185
193
|
"esm"
|
|
@@ -187,6 +195,7 @@
|
|
|
187
195
|
"platform": "neutral",
|
|
188
196
|
"external": [],
|
|
189
197
|
"noExternal": [],
|
|
190
|
-
"define": {}
|
|
198
|
+
"define": {},
|
|
199
|
+
"assets": {}
|
|
191
200
|
}
|
|
192
201
|
}
|
|
@@ -56,14 +56,14 @@ interface PrepareExecutorSchema {
|
|
|
56
56
|
*/
|
|
57
57
|
outputPath?: string;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Copy Path
|
|
60
60
|
*
|
|
61
|
-
*
|
|
61
|
+
* A directory path to copy the build artifacts into
|
|
62
62
|
*
|
|
63
63
|
*
|
|
64
64
|
* @oneOf [object Object],[object Object]
|
|
65
65
|
*/
|
|
66
|
-
|
|
66
|
+
copyPath?: any;
|
|
67
67
|
/**
|
|
68
68
|
* Sourcemap
|
|
69
69
|
*
|
|
@@ -135,6 +135,19 @@ interface PrepareExecutorSchema {
|
|
|
135
135
|
*
|
|
136
136
|
*/
|
|
137
137
|
define?: Record<string, string>;
|
|
138
|
+
/**
|
|
139
|
+
* Assets
|
|
140
|
+
*
|
|
141
|
+
* The `assets` values
|
|
142
|
+
*
|
|
143
|
+
*/
|
|
144
|
+
assets?: Array<{
|
|
145
|
+
input?: string;
|
|
146
|
+
output?: string;
|
|
147
|
+
glob: string;
|
|
148
|
+
ignore?: string[];
|
|
149
|
+
dot?: boolean;
|
|
150
|
+
}>;
|
|
138
151
|
/**
|
|
139
152
|
* Auto Install
|
|
140
153
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.mts","names":["PrepareExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","
|
|
1
|
+
{"version":3,"file":"executor.d.mts","names":["PrepareExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","copyPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","assets","output","glob","ignore","dot","autoInstall","skipCache"],"sources":["../../../../src/executors/prepare/schema.d.ts","../../../../src/executors/prepare/executor.ts"],"mappings":";;;;;;;;UAIiBA,qBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;EA4Ic;;;;;;;;;EAjIdC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;;;;EAWRK,QAAAA;;;;ACjBD;;;;;ED2BCC,UAAAA;;;;;;;;;EAUAC,QAAAA;;;ACnBA;;;;ED2BAC,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,MAAAA,GAASjB,KAAAA;IAAQI,KAAAA;IAAgBc,MAAAA;IAAiBC,IAAAA;IAAcC,MAAAA;IAAmBC,GAAAA;EAAAA;;;;;;;EAQnFC,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBC7IqB,UAAA,CACpB,OAAA,EAAS,yBAAA,YAAqC,qBAAA,GAC9C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAiBL,QAAA,EAAU,eAAA,CAAgB,qBAAA"}
|
|
@@ -56,14 +56,14 @@ interface PrepareExecutorSchema {
|
|
|
56
56
|
*/
|
|
57
57
|
outputPath?: string;
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Copy Path
|
|
60
60
|
*
|
|
61
|
-
*
|
|
61
|
+
* A directory path to copy the build artifacts into
|
|
62
62
|
*
|
|
63
63
|
*
|
|
64
64
|
* @oneOf [object Object],[object Object]
|
|
65
65
|
*/
|
|
66
|
-
|
|
66
|
+
copyPath?: any;
|
|
67
67
|
/**
|
|
68
68
|
* Sourcemap
|
|
69
69
|
*
|
|
@@ -135,6 +135,19 @@ interface PrepareExecutorSchema {
|
|
|
135
135
|
*
|
|
136
136
|
*/
|
|
137
137
|
define?: Record<string, string>;
|
|
138
|
+
/**
|
|
139
|
+
* Assets
|
|
140
|
+
*
|
|
141
|
+
* The `assets` values
|
|
142
|
+
*
|
|
143
|
+
*/
|
|
144
|
+
assets?: Array<{
|
|
145
|
+
input?: string;
|
|
146
|
+
output?: string;
|
|
147
|
+
glob: string;
|
|
148
|
+
ignore?: string[];
|
|
149
|
+
dot?: boolean;
|
|
150
|
+
}>;
|
|
138
151
|
/**
|
|
139
152
|
* Auto Install
|
|
140
153
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.ts","names":["PrepareExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","
|
|
1
|
+
{"version":3,"file":"executor.d.ts","names":["PrepareExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","copyPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","assets","output","glob","ignore","dot","autoInstall","skipCache"],"sources":["../../../../src/executors/prepare/schema.d.ts","../../../../src/executors/prepare/executor.ts"],"mappings":";;;;;;;;UAIiBA,qBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;EA4Ic;;;;;;;;;EAjIdC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;;;;EAWRK,QAAAA;;;;ACjBD;;;;;ED2BCC,UAAAA;;;;;;;;;EAUAC,QAAAA;;;ACnBA;;;;ED2BAC,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,MAAAA,GAASjB,KAAAA;IAAQI,KAAAA;IAAgBc,MAAAA;IAAiBC,IAAAA;IAAcC,MAAAA;IAAmBC,GAAAA;EAAAA;;;;;;;EAQnFC,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBC7IqB,UAAA,CACpB,OAAA,EAAS,yBAAA,YAAqC,qBAAA,GAC9C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAiBL,QAAA,EAAU,eAAA,CAAgB,qBAAA"}
|
|
@@ -57,14 +57,14 @@ export interface PrepareExecutorSchema {
|
|
|
57
57
|
outputPath?: string,
|
|
58
58
|
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* Copy Path
|
|
61
61
|
*
|
|
62
|
-
*
|
|
62
|
+
* A directory path to copy the build artifacts into
|
|
63
63
|
*
|
|
64
64
|
*
|
|
65
65
|
* @oneOf [object Object],[object Object]
|
|
66
66
|
*/
|
|
67
|
-
|
|
67
|
+
copyPath?: any,
|
|
68
68
|
|
|
69
69
|
/**
|
|
70
70
|
* Sourcemap
|
|
@@ -146,6 +146,14 @@ export interface PrepareExecutorSchema {
|
|
|
146
146
|
*/
|
|
147
147
|
define?: Record<string, string>,
|
|
148
148
|
|
|
149
|
+
/**
|
|
150
|
+
* Assets
|
|
151
|
+
*
|
|
152
|
+
* The `assets` values
|
|
153
|
+
*
|
|
154
|
+
*/
|
|
155
|
+
assets?: Array<{ input?: string; output?: string; glob: string; ignore?: string[]; dot?: boolean; }>,
|
|
156
|
+
|
|
149
157
|
/**
|
|
150
158
|
* Auto Install
|
|
151
159
|
*
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"description": "The path to the output directory for the build artifacts",
|
|
46
46
|
"id": "#outputPath"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
49
|
-
"title": "
|
|
50
|
-
"description": "
|
|
48
|
+
"copyPath": {
|
|
49
|
+
"title": "Copy Path",
|
|
50
|
+
"description": "A directory path to copy the build artifacts into",
|
|
51
51
|
"oneOf": [
|
|
52
52
|
{
|
|
53
53
|
"type": "string",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
]
|
|
61
61
|
}
|
|
62
62
|
],
|
|
63
|
-
"id": "#
|
|
63
|
+
"id": "#copyPath",
|
|
64
64
|
"type": "any",
|
|
65
65
|
"default": {}
|
|
66
66
|
},
|
|
@@ -161,6 +161,14 @@
|
|
|
161
161
|
"id": "#define",
|
|
162
162
|
"default": {}
|
|
163
163
|
},
|
|
164
|
+
"assets": {
|
|
165
|
+
"title": "Assets",
|
|
166
|
+
"type": "any",
|
|
167
|
+
"tsType": "Array<{ input?: string; output?: string; glob: string; ignore?: string[]; dot?: boolean; }>",
|
|
168
|
+
"description": "The `assets` values",
|
|
169
|
+
"id": "#assets",
|
|
170
|
+
"default": {}
|
|
171
|
+
},
|
|
164
172
|
"autoInstall": {
|
|
165
173
|
"title": "Auto Install",
|
|
166
174
|
"type": "boolean",
|
|
@@ -179,7 +187,7 @@
|
|
|
179
187
|
"config": "{projectRoot}/powerlines.config.ts",
|
|
180
188
|
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
181
189
|
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
182
|
-
"
|
|
190
|
+
"copyPath": {},
|
|
183
191
|
"format": [
|
|
184
192
|
"cjs",
|
|
185
193
|
"esm"
|
|
@@ -187,6 +195,7 @@
|
|
|
187
195
|
"platform": "neutral",
|
|
188
196
|
"external": [],
|
|
189
197
|
"noExternal": [],
|
|
190
|
-
"define": {}
|
|
198
|
+
"define": {},
|
|
199
|
+
"assets": {}
|
|
191
200
|
}
|
|
192
201
|
}
|
|
@@ -118,7 +118,7 @@ function createNxPlugin(opts) {
|
|
|
118
118
|
options: {
|
|
119
119
|
projectType: projectConfig.projectType,
|
|
120
120
|
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
121
|
-
|
|
121
|
+
copyPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
122
122
|
},
|
|
123
123
|
configurations: {
|
|
124
124
|
production: { mode: "production" },
|
|
@@ -139,7 +139,7 @@ function createNxPlugin(opts) {
|
|
|
139
139
|
options: {
|
|
140
140
|
projectType: projectConfig.projectType,
|
|
141
141
|
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
142
|
-
|
|
142
|
+
copyPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
143
143
|
},
|
|
144
144
|
configurations: {
|
|
145
145
|
production: { mode: "production" },
|
|
@@ -160,7 +160,7 @@ function createNxPlugin(opts) {
|
|
|
160
160
|
options: {
|
|
161
161
|
projectType: projectConfig.projectType,
|
|
162
162
|
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
163
|
-
|
|
163
|
+
copyPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
164
164
|
},
|
|
165
165
|
configurations: {
|
|
166
166
|
production: { mode: "production" },
|
|
@@ -181,7 +181,7 @@ function createNxPlugin(opts) {
|
|
|
181
181
|
options: {
|
|
182
182
|
projectType: projectConfig.projectType,
|
|
183
183
|
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
184
|
-
|
|
184
|
+
copyPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
185
185
|
},
|
|
186
186
|
configurations: {
|
|
187
187
|
production: { mode: "production" },
|
|
@@ -206,7 +206,7 @@ function createNxPlugin(opts) {
|
|
|
206
206
|
options: {
|
|
207
207
|
projectType: projectConfig.projectType,
|
|
208
208
|
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
209
|
-
|
|
209
|
+
copyPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
210
210
|
},
|
|
211
211
|
configurations: {
|
|
212
212
|
production: { mode: "production" },
|
|
@@ -230,7 +230,7 @@ function createNxPlugin(opts) {
|
|
|
230
230
|
options: {
|
|
231
231
|
projectType: projectConfig.projectType,
|
|
232
232
|
outputPath: `{workspaceRoot}/${projectRoot}/dist`,
|
|
233
|
-
|
|
233
|
+
copyPath: `{workspaceRoot}/dist/${projectRoot}`
|
|
234
234
|
},
|
|
235
235
|
configurations: {
|
|
236
236
|
production: { mode: "production" },
|