@powerlines/nx 0.11.290 → 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 +17 -4
- package/dist/src/base/base-executor.schema.d.mts.map +1 -1
- package/dist/src/base/base-executor.schema.d.ts +17 -4
- package/dist/src/base/base-executor.schema.d.ts.map +1 -1
- package/dist/src/base/base-executor.schema.json +29 -7
- package/dist/src/base/base-executor.untyped.js +17 -6
- package/dist/src/base/base-executor.untyped.mjs +17 -6
- package/dist/src/base/base-executor.untyped.mjs.map +1 -1
- package/dist/src/executors/build/executor.d.mts +17 -4
- package/dist/src/executors/build/executor.d.mts.map +1 -1
- package/dist/src/executors/build/executor.d.ts +17 -4
- package/dist/src/executors/build/executor.d.ts.map +1 -1
- package/dist/src/executors/build/schema.d.ts +12 -4
- package/dist/src/executors/build/schema.json +28 -6
- package/dist/src/executors/clean/executor.d.mts +17 -4
- package/dist/src/executors/clean/executor.d.mts.map +1 -1
- package/dist/src/executors/clean/executor.d.ts +17 -4
- package/dist/src/executors/clean/executor.d.ts.map +1 -1
- package/dist/src/executors/clean/schema.d.ts +12 -4
- package/dist/src/executors/clean/schema.json +29 -7
- package/dist/src/executors/docs/executor.d.mts +17 -4
- package/dist/src/executors/docs/executor.d.mts.map +1 -1
- package/dist/src/executors/docs/executor.d.ts +17 -4
- package/dist/src/executors/docs/executor.d.ts.map +1 -1
- package/dist/src/executors/docs/schema.d.ts +12 -4
- package/dist/src/executors/docs/schema.json +29 -7
- package/dist/src/executors/lint/executor.d.mts +17 -4
- package/dist/src/executors/lint/executor.d.mts.map +1 -1
- package/dist/src/executors/lint/executor.d.ts +17 -4
- package/dist/src/executors/lint/executor.d.ts.map +1 -1
- package/dist/src/executors/lint/schema.d.ts +12 -4
- package/dist/src/executors/lint/schema.json +29 -7
- package/dist/src/executors/prepare/executor.d.mts +17 -4
- package/dist/src/executors/prepare/executor.d.mts.map +1 -1
- package/dist/src/executors/prepare/executor.d.ts +17 -4
- package/dist/src/executors/prepare/executor.d.ts.map +1 -1
- package/dist/src/executors/prepare/schema.d.ts +12 -4
- package/dist/src/executors/prepare/schema.json +29 -7
- 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 +11 -11
|
@@ -57,14 +57,14 @@ export interface CleanExecutorSchema {
|
|
|
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
|
|
@@ -145,5 +145,13 @@ export interface CleanExecutorSchema {
|
|
|
145
145
|
*
|
|
146
146
|
*/
|
|
147
147
|
define?: Record<string, string>,
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* Assets
|
|
151
|
+
*
|
|
152
|
+
* The `assets` values
|
|
153
|
+
*
|
|
154
|
+
*/
|
|
155
|
+
assets?: Array<{ input?: string; output?: string; glob: string; ignore?: string[]; dot?: boolean; }>,
|
|
148
156
|
}
|
|
149
157
|
|
|
@@ -45,12 +45,24 @@
|
|
|
45
45
|
"description": "The path to the output directory for the build artifacts",
|
|
46
46
|
"id": "#outputPath"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
49
|
-
"title": "
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
48
|
+
"copyPath": {
|
|
49
|
+
"title": "Copy Path",
|
|
50
|
+
"description": "A directory path to copy the build artifacts into",
|
|
51
|
+
"oneOf": [
|
|
52
|
+
{
|
|
53
|
+
"type": "string",
|
|
54
|
+
"format": "path"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"type": "boolean",
|
|
58
|
+
"enum": [
|
|
59
|
+
false
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"id": "#copyPath",
|
|
64
|
+
"type": "any",
|
|
65
|
+
"default": {}
|
|
54
66
|
},
|
|
55
67
|
"sourceMap": {
|
|
56
68
|
"title": "Sourcemap",
|
|
@@ -148,6 +160,14 @@
|
|
|
148
160
|
"description": "The `define` values",
|
|
149
161
|
"id": "#define",
|
|
150
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": {}
|
|
151
171
|
}
|
|
152
172
|
},
|
|
153
173
|
"type": "object",
|
|
@@ -155,6 +175,7 @@
|
|
|
155
175
|
"config": "{projectRoot}/powerlines.config.ts",
|
|
156
176
|
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
157
177
|
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
178
|
+
"copyPath": {},
|
|
158
179
|
"format": [
|
|
159
180
|
"cjs",
|
|
160
181
|
"esm"
|
|
@@ -162,6 +183,7 @@
|
|
|
162
183
|
"platform": "neutral",
|
|
163
184
|
"external": [],
|
|
164
185
|
"noExternal": [],
|
|
165
|
-
"define": {}
|
|
186
|
+
"define": {},
|
|
187
|
+
"assets": {}
|
|
166
188
|
}
|
|
167
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,12 +45,24 @@
|
|
|
45
45
|
"description": "The path to the output directory for the build artifacts",
|
|
46
46
|
"id": "#outputPath"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
49
|
-
"title": "
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
48
|
+
"copyPath": {
|
|
49
|
+
"title": "Copy Path",
|
|
50
|
+
"description": "A directory path to copy the build artifacts into",
|
|
51
|
+
"oneOf": [
|
|
52
|
+
{
|
|
53
|
+
"type": "string",
|
|
54
|
+
"format": "path"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"type": "boolean",
|
|
58
|
+
"enum": [
|
|
59
|
+
false
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"id": "#copyPath",
|
|
64
|
+
"type": "any",
|
|
65
|
+
"default": {}
|
|
54
66
|
},
|
|
55
67
|
"sourceMap": {
|
|
56
68
|
"title": "Sourcemap",
|
|
@@ -149,6 +161,14 @@
|
|
|
149
161
|
"id": "#define",
|
|
150
162
|
"default": {}
|
|
151
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
|
+
},
|
|
152
172
|
"autoInstall": {
|
|
153
173
|
"title": "Auto Install",
|
|
154
174
|
"type": "boolean",
|
|
@@ -167,6 +187,7 @@
|
|
|
167
187
|
"config": "{projectRoot}/powerlines.config.ts",
|
|
168
188
|
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
169
189
|
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
190
|
+
"copyPath": {},
|
|
170
191
|
"format": [
|
|
171
192
|
"cjs",
|
|
172
193
|
"esm"
|
|
@@ -174,6 +195,7 @@
|
|
|
174
195
|
"platform": "neutral",
|
|
175
196
|
"external": [],
|
|
176
197
|
"noExternal": [],
|
|
177
|
-
"define": {}
|
|
198
|
+
"define": {},
|
|
199
|
+
"assets": {}
|
|
178
200
|
}
|
|
179
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,12 +45,24 @@
|
|
|
45
45
|
"description": "The path to the output directory for the build artifacts",
|
|
46
46
|
"id": "#outputPath"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
49
|
-
"title": "
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
48
|
+
"copyPath": {
|
|
49
|
+
"title": "Copy Path",
|
|
50
|
+
"description": "A directory path to copy the build artifacts into",
|
|
51
|
+
"oneOf": [
|
|
52
|
+
{
|
|
53
|
+
"type": "string",
|
|
54
|
+
"format": "path"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"type": "boolean",
|
|
58
|
+
"enum": [
|
|
59
|
+
false
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
"id": "#copyPath",
|
|
64
|
+
"type": "any",
|
|
65
|
+
"default": {}
|
|
54
66
|
},
|
|
55
67
|
"sourceMap": {
|
|
56
68
|
"title": "Sourcemap",
|
|
@@ -149,6 +161,14 @@
|
|
|
149
161
|
"id": "#define",
|
|
150
162
|
"default": {}
|
|
151
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
|
+
},
|
|
152
172
|
"autoInstall": {
|
|
153
173
|
"title": "Auto Install",
|
|
154
174
|
"type": "boolean",
|
|
@@ -167,6 +187,7 @@
|
|
|
167
187
|
"config": "{projectRoot}/powerlines.config.ts",
|
|
168
188
|
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
169
189
|
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
190
|
+
"copyPath": {},
|
|
170
191
|
"format": [
|
|
171
192
|
"cjs",
|
|
172
193
|
"esm"
|
|
@@ -174,6 +195,7 @@
|
|
|
174
195
|
"platform": "neutral",
|
|
175
196
|
"external": [],
|
|
176
197
|
"noExternal": [],
|
|
177
|
-
"define": {}
|
|
198
|
+
"define": {},
|
|
199
|
+
"assets": {}
|
|
178
200
|
}
|
|
179
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
|
*
|