@powerlines/nx 0.13.181 → 0.13.182
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.d.mts +0 -1
- package/dist/src/base/base-executor.d.mts.map +1 -1
- package/dist/src/base/base-executor.d.ts +0 -1
- package/dist/src/base/base-executor.d.ts.map +1 -1
- package/dist/src/base/base-executor.schema.d.mts +66 -66
- package/dist/src/base/base-executor.schema.d.mts.map +1 -1
- package/dist/src/base/base-executor.schema.d.ts +66 -66
- package/dist/src/base/base-executor.schema.d.ts.map +1 -1
- package/dist/src/executors/build/executor.d.mts +76 -77
- package/dist/src/executors/build/executor.d.mts.map +1 -1
- package/dist/src/executors/build/executor.d.ts +76 -77
- package/dist/src/executors/build/executor.d.ts.map +1 -1
- package/dist/src/executors/clean/executor.d.mts +66 -67
- package/dist/src/executors/clean/executor.d.mts.map +1 -1
- package/dist/src/executors/clean/executor.d.ts +66 -67
- package/dist/src/executors/clean/executor.d.ts.map +1 -1
- package/dist/src/executors/docs/executor.d.mts +72 -73
- package/dist/src/executors/docs/executor.d.mts.map +1 -1
- package/dist/src/executors/docs/executor.d.ts +72 -73
- package/dist/src/executors/docs/executor.d.ts.map +1 -1
- package/dist/src/executors/lint/executor.d.mts +72 -73
- package/dist/src/executors/lint/executor.d.mts.map +1 -1
- package/dist/src/executors/lint/executor.d.ts +72 -73
- package/dist/src/executors/lint/executor.d.ts.map +1 -1
- package/dist/src/executors/prepare/executor.d.mts +72 -73
- package/dist/src/executors/prepare/executor.d.mts.map +1 -1
- package/dist/src/executors/prepare/executor.d.ts +72 -73
- package/dist/src/executors/prepare/executor.d.ts.map +1 -1
- package/dist/src/generators/sync/generator.d.mts +0 -1
- package/dist/src/generators/sync/generator.d.mts.map +1 -1
- package/dist/src/generators/sync/generator.d.ts +0 -1
- package/dist/src/generators/sync/generator.d.ts.map +1 -1
- package/dist/src/helpers/constants.d.mts.map +1 -1
- package/dist/src/helpers/constants.d.ts.map +1 -1
- package/dist/src/helpers/plugin-utilities.d.mts +0 -1
- package/dist/src/helpers/plugin-utilities.d.mts.map +1 -1
- package/dist/src/helpers/plugin-utilities.d.ts +0 -1
- package/dist/src/helpers/plugin-utilities.d.ts.map +1 -1
- package/dist/src/index.d.mts +2 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/plugin/index.d.mts.map +1 -1
- package/dist/src/plugin/index.d.ts.map +1 -1
- package/dist/src/types/plugin.d.mts.map +1 -1
- package/dist/src/types/plugin.d.ts.map +1 -1
- package/package.json +12 -12
|
@@ -1,154 +1,153 @@
|
|
|
1
1
|
import { PromiseExecutor } from "@nx/devkit";
|
|
2
|
-
|
|
3
2
|
//#region src/executors/clean/schema.d.ts
|
|
4
3
|
// Generated by @storm-software/untyped
|
|
5
4
|
// Do not edit this file directly
|
|
6
5
|
interface CleanExecutorSchema {
|
|
7
6
|
/**
|
|
8
7
|
* Powerlines Configuration File
|
|
9
|
-
*
|
|
8
|
+
*
|
|
10
9
|
* The path to the Powerlines configuration file. Alias for `configFile`.
|
|
11
|
-
*
|
|
12
|
-
*
|
|
10
|
+
*
|
|
11
|
+
*
|
|
13
12
|
* @format path
|
|
14
|
-
|
|
13
|
+
*/
|
|
15
14
|
config?: string;
|
|
16
15
|
/**
|
|
17
16
|
* Powerlines Configuration File
|
|
18
|
-
*
|
|
17
|
+
*
|
|
19
18
|
* The path to the Powerlines configuration file. Alias for `config`.
|
|
20
|
-
*
|
|
21
|
-
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
22
21
|
* @format path
|
|
23
|
-
|
|
22
|
+
*/
|
|
24
23
|
configFile?: string;
|
|
25
24
|
/**
|
|
26
25
|
* Powerlines Configuration Index
|
|
27
|
-
*
|
|
26
|
+
*
|
|
28
27
|
* The index in the Powerlines configuration file to use (if an array of configurations are provided).
|
|
29
|
-
*
|
|
28
|
+
*
|
|
30
29
|
* @default 0
|
|
31
|
-
|
|
30
|
+
*/
|
|
32
31
|
configIndex?: number;
|
|
33
32
|
/**
|
|
34
33
|
* Input Entry File(s)
|
|
35
|
-
*
|
|
34
|
+
*
|
|
36
35
|
* The entry file(s) that serve as the input for the project
|
|
37
|
-
*
|
|
38
|
-
*
|
|
36
|
+
*
|
|
37
|
+
*
|
|
39
38
|
* @format path
|
|
40
|
-
|
|
39
|
+
*/
|
|
41
40
|
input?: Array<string>;
|
|
42
41
|
/**
|
|
43
42
|
* TSConfig Path
|
|
44
|
-
*
|
|
43
|
+
*
|
|
45
44
|
* The path to the tsconfig file
|
|
46
|
-
*
|
|
47
|
-
*
|
|
45
|
+
*
|
|
46
|
+
*
|
|
48
47
|
* @format path
|
|
49
|
-
|
|
48
|
+
*/
|
|
50
49
|
tsconfig?: string;
|
|
51
50
|
/**
|
|
52
51
|
* Output Path
|
|
53
|
-
*
|
|
52
|
+
*
|
|
54
53
|
* The path to the output directory for the build artifacts
|
|
55
|
-
*
|
|
56
|
-
*
|
|
54
|
+
*
|
|
55
|
+
*
|
|
57
56
|
* @format path
|
|
58
|
-
|
|
57
|
+
*/
|
|
59
58
|
outputPath?: string;
|
|
60
59
|
/**
|
|
61
60
|
* Copy Path
|
|
62
|
-
*
|
|
61
|
+
*
|
|
63
62
|
* A directory path to copy the build artifacts into
|
|
64
|
-
*
|
|
65
|
-
*
|
|
63
|
+
*
|
|
64
|
+
*
|
|
66
65
|
* @oneOf [object Object],[object Object]
|
|
67
|
-
|
|
66
|
+
*/
|
|
68
67
|
copyPath?: any;
|
|
69
68
|
/**
|
|
70
69
|
* Sourcemap
|
|
71
|
-
*
|
|
70
|
+
*
|
|
72
71
|
* Generate a sourcemap
|
|
73
|
-
*
|
|
74
|
-
|
|
72
|
+
*
|
|
73
|
+
*/
|
|
75
74
|
sourceMap?: boolean;
|
|
76
75
|
/**
|
|
77
76
|
* Minify
|
|
78
|
-
*
|
|
77
|
+
*
|
|
79
78
|
* Minify the output
|
|
80
|
-
*
|
|
81
|
-
|
|
79
|
+
*
|
|
80
|
+
*/
|
|
82
81
|
minify?: boolean;
|
|
83
82
|
/**
|
|
84
83
|
* Format
|
|
85
|
-
*
|
|
84
|
+
*
|
|
86
85
|
* The format to build
|
|
87
|
-
*
|
|
86
|
+
*
|
|
88
87
|
* @default ["cjs","esm"]
|
|
89
|
-
|
|
88
|
+
*/
|
|
90
89
|
format?: Array<string>;
|
|
91
90
|
/**
|
|
92
91
|
* Platform
|
|
93
|
-
*
|
|
92
|
+
*
|
|
94
93
|
* The platform to build
|
|
95
|
-
*
|
|
96
|
-
*
|
|
94
|
+
*
|
|
95
|
+
*
|
|
97
96
|
* @enum neutral,node,browser
|
|
98
|
-
|
|
97
|
+
*/
|
|
99
98
|
platform?: string;
|
|
100
99
|
/**
|
|
101
100
|
* External
|
|
102
|
-
*
|
|
101
|
+
*
|
|
103
102
|
* The external dependencies
|
|
104
|
-
*
|
|
105
|
-
|
|
103
|
+
*
|
|
104
|
+
*/
|
|
106
105
|
external?: Array<any>;
|
|
107
106
|
/**
|
|
108
107
|
* No External
|
|
109
|
-
*
|
|
108
|
+
*
|
|
110
109
|
* The dependencies that should not be treated as external
|
|
111
|
-
*
|
|
112
|
-
|
|
110
|
+
*
|
|
111
|
+
*/
|
|
113
112
|
noExternal?: Array<any>;
|
|
114
113
|
/**
|
|
115
114
|
* Skip Node Modules Bundle
|
|
116
|
-
*
|
|
115
|
+
*
|
|
117
116
|
* Skip bundling node_modules during the build process (if required)
|
|
118
|
-
*
|
|
119
|
-
|
|
117
|
+
*
|
|
118
|
+
*/
|
|
120
119
|
skipNodeModulesBundle?: boolean;
|
|
121
120
|
/**
|
|
122
121
|
* Mode
|
|
123
|
-
*
|
|
122
|
+
*
|
|
124
123
|
* The build mode
|
|
125
|
-
*
|
|
126
|
-
*
|
|
124
|
+
*
|
|
125
|
+
*
|
|
127
126
|
* @enum development,test,production
|
|
128
|
-
|
|
127
|
+
*/
|
|
129
128
|
mode?: string;
|
|
130
129
|
/**
|
|
131
130
|
* Log Level
|
|
132
|
-
*
|
|
131
|
+
*
|
|
133
132
|
* The log level to use for the build process
|
|
134
|
-
*
|
|
135
|
-
*
|
|
133
|
+
*
|
|
134
|
+
*
|
|
136
135
|
* @enum fatal,error,warn,success,info,debug,trace,silent
|
|
137
|
-
|
|
136
|
+
*/
|
|
138
137
|
logLevel?: string;
|
|
139
138
|
/**
|
|
140
139
|
* Define
|
|
141
|
-
*
|
|
140
|
+
*
|
|
142
141
|
* The `define` values
|
|
143
|
-
*
|
|
144
|
-
|
|
142
|
+
*
|
|
143
|
+
*/
|
|
145
144
|
define?: Record<string, string>;
|
|
146
145
|
/**
|
|
147
146
|
* Assets
|
|
148
|
-
*
|
|
147
|
+
*
|
|
149
148
|
* The `assets` values
|
|
150
|
-
*
|
|
151
|
-
|
|
149
|
+
*
|
|
150
|
+
*/
|
|
152
151
|
assets?: Array<{
|
|
153
152
|
input?: string;
|
|
154
153
|
output?: string;
|
|
@@ -158,10 +157,10 @@ interface CleanExecutorSchema {
|
|
|
158
157
|
}>;
|
|
159
158
|
/**
|
|
160
159
|
* Additional Arguments
|
|
161
|
-
*
|
|
160
|
+
*
|
|
162
161
|
* The additional arguments provided during execution of the command
|
|
163
|
-
*
|
|
164
|
-
|
|
162
|
+
*
|
|
163
|
+
*/
|
|
165
164
|
additionalArgs?: Record<string, string>;
|
|
166
165
|
}
|
|
167
166
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.mts","names":[
|
|
1
|
+
{"version":3,"file":"executor.d.mts","names":[],"sources":["../../../../src/executors/clean/schema.d.ts","../../../../src/executors/clean/executor.ts"],"mappings":";;;;UAIiB;;;;;;;;;EAShB;;;;;;;;;EAUA;;;;;;;;EASA;;;;;;;;;EAUA,QAAQ;;;;;;;;;EAUR;;;;;;;;;EAUA;;;;;;;;;EAUA;;;;;;;EAQA;;;;;;;EAQA;;;;;;;;EASA,SAAS;;;;;;;;;EAUT;;;;;;;EAQA,WAAW;;;;;;;EAQX,aAAa;;;;;;;EAQb;;;;;;;;;EAUA;;;;;;;;;EAUA;;;;;;;EAQA,SAAS;;;;;;;EAQT,SAAS;IAAQ;IAAgB;IAAiB;IAAc;IAAmB;;;;;;;;EAQnF,iBAAiB;;;;cCzIZ,UAAU,gBAAgB"}
|
|
@@ -1,154 +1,153 @@
|
|
|
1
1
|
import { PromiseExecutor } from "@nx/devkit";
|
|
2
|
-
|
|
3
2
|
//#region src/executors/clean/schema.d.ts
|
|
4
3
|
// Generated by @storm-software/untyped
|
|
5
4
|
// Do not edit this file directly
|
|
6
5
|
interface CleanExecutorSchema {
|
|
7
6
|
/**
|
|
8
7
|
* Powerlines Configuration File
|
|
9
|
-
*
|
|
8
|
+
*
|
|
10
9
|
* The path to the Powerlines configuration file. Alias for `configFile`.
|
|
11
|
-
*
|
|
12
|
-
*
|
|
10
|
+
*
|
|
11
|
+
*
|
|
13
12
|
* @format path
|
|
14
|
-
|
|
13
|
+
*/
|
|
15
14
|
config?: string;
|
|
16
15
|
/**
|
|
17
16
|
* Powerlines Configuration File
|
|
18
|
-
*
|
|
17
|
+
*
|
|
19
18
|
* The path to the Powerlines configuration file. Alias for `config`.
|
|
20
|
-
*
|
|
21
|
-
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
22
21
|
* @format path
|
|
23
|
-
|
|
22
|
+
*/
|
|
24
23
|
configFile?: string;
|
|
25
24
|
/**
|
|
26
25
|
* Powerlines Configuration Index
|
|
27
|
-
*
|
|
26
|
+
*
|
|
28
27
|
* The index in the Powerlines configuration file to use (if an array of configurations are provided).
|
|
29
|
-
*
|
|
28
|
+
*
|
|
30
29
|
* @default 0
|
|
31
|
-
|
|
30
|
+
*/
|
|
32
31
|
configIndex?: number;
|
|
33
32
|
/**
|
|
34
33
|
* Input Entry File(s)
|
|
35
|
-
*
|
|
34
|
+
*
|
|
36
35
|
* The entry file(s) that serve as the input for the project
|
|
37
|
-
*
|
|
38
|
-
*
|
|
36
|
+
*
|
|
37
|
+
*
|
|
39
38
|
* @format path
|
|
40
|
-
|
|
39
|
+
*/
|
|
41
40
|
input?: Array<string>;
|
|
42
41
|
/**
|
|
43
42
|
* TSConfig Path
|
|
44
|
-
*
|
|
43
|
+
*
|
|
45
44
|
* The path to the tsconfig file
|
|
46
|
-
*
|
|
47
|
-
*
|
|
45
|
+
*
|
|
46
|
+
*
|
|
48
47
|
* @format path
|
|
49
|
-
|
|
48
|
+
*/
|
|
50
49
|
tsconfig?: string;
|
|
51
50
|
/**
|
|
52
51
|
* Output Path
|
|
53
|
-
*
|
|
52
|
+
*
|
|
54
53
|
* The path to the output directory for the build artifacts
|
|
55
|
-
*
|
|
56
|
-
*
|
|
54
|
+
*
|
|
55
|
+
*
|
|
57
56
|
* @format path
|
|
58
|
-
|
|
57
|
+
*/
|
|
59
58
|
outputPath?: string;
|
|
60
59
|
/**
|
|
61
60
|
* Copy Path
|
|
62
|
-
*
|
|
61
|
+
*
|
|
63
62
|
* A directory path to copy the build artifacts into
|
|
64
|
-
*
|
|
65
|
-
*
|
|
63
|
+
*
|
|
64
|
+
*
|
|
66
65
|
* @oneOf [object Object],[object Object]
|
|
67
|
-
|
|
66
|
+
*/
|
|
68
67
|
copyPath?: any;
|
|
69
68
|
/**
|
|
70
69
|
* Sourcemap
|
|
71
|
-
*
|
|
70
|
+
*
|
|
72
71
|
* Generate a sourcemap
|
|
73
|
-
*
|
|
74
|
-
|
|
72
|
+
*
|
|
73
|
+
*/
|
|
75
74
|
sourceMap?: boolean;
|
|
76
75
|
/**
|
|
77
76
|
* Minify
|
|
78
|
-
*
|
|
77
|
+
*
|
|
79
78
|
* Minify the output
|
|
80
|
-
*
|
|
81
|
-
|
|
79
|
+
*
|
|
80
|
+
*/
|
|
82
81
|
minify?: boolean;
|
|
83
82
|
/**
|
|
84
83
|
* Format
|
|
85
|
-
*
|
|
84
|
+
*
|
|
86
85
|
* The format to build
|
|
87
|
-
*
|
|
86
|
+
*
|
|
88
87
|
* @default ["cjs","esm"]
|
|
89
|
-
|
|
88
|
+
*/
|
|
90
89
|
format?: Array<string>;
|
|
91
90
|
/**
|
|
92
91
|
* Platform
|
|
93
|
-
*
|
|
92
|
+
*
|
|
94
93
|
* The platform to build
|
|
95
|
-
*
|
|
96
|
-
*
|
|
94
|
+
*
|
|
95
|
+
*
|
|
97
96
|
* @enum neutral,node,browser
|
|
98
|
-
|
|
97
|
+
*/
|
|
99
98
|
platform?: string;
|
|
100
99
|
/**
|
|
101
100
|
* External
|
|
102
|
-
*
|
|
101
|
+
*
|
|
103
102
|
* The external dependencies
|
|
104
|
-
*
|
|
105
|
-
|
|
103
|
+
*
|
|
104
|
+
*/
|
|
106
105
|
external?: Array<any>;
|
|
107
106
|
/**
|
|
108
107
|
* No External
|
|
109
|
-
*
|
|
108
|
+
*
|
|
110
109
|
* The dependencies that should not be treated as external
|
|
111
|
-
*
|
|
112
|
-
|
|
110
|
+
*
|
|
111
|
+
*/
|
|
113
112
|
noExternal?: Array<any>;
|
|
114
113
|
/**
|
|
115
114
|
* Skip Node Modules Bundle
|
|
116
|
-
*
|
|
115
|
+
*
|
|
117
116
|
* Skip bundling node_modules during the build process (if required)
|
|
118
|
-
*
|
|
119
|
-
|
|
117
|
+
*
|
|
118
|
+
*/
|
|
120
119
|
skipNodeModulesBundle?: boolean;
|
|
121
120
|
/**
|
|
122
121
|
* Mode
|
|
123
|
-
*
|
|
122
|
+
*
|
|
124
123
|
* The build mode
|
|
125
|
-
*
|
|
126
|
-
*
|
|
124
|
+
*
|
|
125
|
+
*
|
|
127
126
|
* @enum development,test,production
|
|
128
|
-
|
|
127
|
+
*/
|
|
129
128
|
mode?: string;
|
|
130
129
|
/**
|
|
131
130
|
* Log Level
|
|
132
|
-
*
|
|
131
|
+
*
|
|
133
132
|
* The log level to use for the build process
|
|
134
|
-
*
|
|
135
|
-
*
|
|
133
|
+
*
|
|
134
|
+
*
|
|
136
135
|
* @enum fatal,error,warn,success,info,debug,trace,silent
|
|
137
|
-
|
|
136
|
+
*/
|
|
138
137
|
logLevel?: string;
|
|
139
138
|
/**
|
|
140
139
|
* Define
|
|
141
|
-
*
|
|
140
|
+
*
|
|
142
141
|
* The `define` values
|
|
143
|
-
*
|
|
144
|
-
|
|
142
|
+
*
|
|
143
|
+
*/
|
|
145
144
|
define?: Record<string, string>;
|
|
146
145
|
/**
|
|
147
146
|
* Assets
|
|
148
|
-
*
|
|
147
|
+
*
|
|
149
148
|
* The `assets` values
|
|
150
|
-
*
|
|
151
|
-
|
|
149
|
+
*
|
|
150
|
+
*/
|
|
152
151
|
assets?: Array<{
|
|
153
152
|
input?: string;
|
|
154
153
|
output?: string;
|
|
@@ -158,10 +157,10 @@ interface CleanExecutorSchema {
|
|
|
158
157
|
}>;
|
|
159
158
|
/**
|
|
160
159
|
* Additional Arguments
|
|
161
|
-
*
|
|
160
|
+
*
|
|
162
161
|
* The additional arguments provided during execution of the command
|
|
163
|
-
*
|
|
164
|
-
|
|
162
|
+
*
|
|
163
|
+
*/
|
|
165
164
|
additionalArgs?: Record<string, string>;
|
|
166
165
|
}
|
|
167
166
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executor.d.ts","names":[
|
|
1
|
+
{"version":3,"file":"executor.d.ts","names":[],"sources":["../../../../src/executors/clean/schema.d.ts","../../../../src/executors/clean/executor.ts"],"mappings":";;;;UAIiB;;;;;;;;;EAShB;;;;;;;;;EAUA;;;;;;;;EASA;;;;;;;;;EAUA,QAAQ;;;;;;;;;EAUR;;;;;;;;;EAUA;;;;;;;;;EAUA;;;;;;;EAQA;;;;;;;EAQA;;;;;;;;EASA,SAAS;;;;;;;;;EAUT;;;;;;;EAQA,WAAW;;;;;;;EAQX,aAAa;;;;;;;EAQb;;;;;;;;;EAUA;;;;;;;;;EAUA;;;;;;;EAQA,SAAS;;;;;;;EAQT,SAAS;IAAQ;IAAgB;IAAiB;IAAc;IAAmB;;;;;;;;EAQnF,iBAAiB;;;;cCzIZ,UAAU,gBAAgB"}
|