@powerlines/nx 0.11.261 → 0.11.262

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.
Files changed (35) hide show
  1. package/README.md +72 -34
  2. package/dist/src/base/base-executor.js +1 -1
  3. package/dist/src/base/base-executor.mjs +1 -1
  4. package/dist/src/base/index.js +1 -1
  5. package/dist/src/base/index.mjs +1 -1
  6. package/dist/src/{base-executor-C59DiyUh.mjs → base-executor-FS96Egrh.mjs} +2 -2
  7. package/dist/src/base-executor-FS96Egrh.mjs.map +1 -0
  8. package/dist/src/base-executor-SJIBQwB2.mjs.map +1 -1
  9. package/dist/src/{base-executor-CzLqlwh7.js → base-executor-_Qs1Zf1s.js} +1 -1
  10. package/dist/src/executors/build/executor.js +1 -1
  11. package/dist/src/executors/build/executor.mjs +1 -1
  12. package/dist/src/executors/build/untyped.d.ts +2 -2
  13. package/dist/src/executors/clean/executor.js +1 -1
  14. package/dist/src/executors/clean/executor.mjs +1 -1
  15. package/dist/src/executors/clean/untyped.d.mts +2 -2
  16. package/dist/src/executors/clean/untyped.d.ts +2 -2
  17. package/dist/src/executors/docs/executor.js +1 -1
  18. package/dist/src/executors/docs/executor.mjs +1 -1
  19. package/dist/src/executors/docs/untyped.d.mts +2 -2
  20. package/dist/src/executors/docs/untyped.d.ts +2 -2
  21. package/dist/src/executors/lint/executor.js +1 -1
  22. package/dist/src/executors/lint/executor.mjs +1 -1
  23. package/dist/src/executors/lint/untyped.d.mts +2 -2
  24. package/dist/src/executors/prepare/executor.js +1 -1
  25. package/dist/src/executors/prepare/executor.mjs +1 -1
  26. package/dist/src/executors/prepare/untyped.d.mts +2 -2
  27. package/dist/src/executors/prepare/untyped.d.ts +2 -2
  28. package/dist/src/generators/sync/untyped.d.mts +2 -2
  29. package/dist/src/generators/sync/untyped.d.ts +2 -2
  30. package/dist/src/index.js +1 -1
  31. package/dist/src/index.mjs +1 -1
  32. package/package.json +3 -3
  33. package/dist/src/base-executor-C59DiyUh.mjs.map +0 -1
  34. package/dist/src/base-executor.untyped-7SvGKXcO.d.mts +0 -7
  35. package/dist/src/base-executor.untyped-7SvGKXcO.d.mts.map +0 -1
package/README.md CHANGED
@@ -49,6 +49,7 @@ A package containing tools for managing a Storm workspace. It includes various
49
49
 
50
50
  <!-- START doctoc -->
51
51
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
52
+
52
53
  ## Table of Contents
53
54
 
54
55
  - [Powerlines - Nx Plugin](#powerlines---nx-plugin)
@@ -125,7 +126,7 @@ the workspace's projects:
125
126
  <!-- markdownlint-disable -->
126
127
 
127
128
 
128
- ## Powerlines Clean Executor
129
+ ## Clean Executor
129
130
 
130
131
  A type definition for the Powerlines - Clean executor schema
131
132
 
@@ -145,16 +146,24 @@ The following executor options are available:
145
146
 
146
147
  | Option | Type | Description | Default |
147
148
  | --------- | ------ | ------------- | --------- |
148
- | outputPath | `string` | The output path for the build | "dist/{projectRoot}" |
149
+ | configFile | `string` | The path to the Powerlines configuration file | "{projectRoot}/powerlines.config.ts" |
150
+ | input | `string[]` | The entry file(s) that serve as the input for the project | |
149
151
  | tsconfig | `string` | The path to the tsconfig file | "{projectRoot}/tsconfig.json" |
152
+ | outputPath | `string` | The path to the output directory for the build artifacts | |
153
+ | sourceMap | `boolean` | Generate a sourcemap | |
154
+ | format | `string[]` | The format to build | `[]` |
155
+ | platform | "neutral" \| "node" \| "browser" | The platform to build | "neutral" |
156
+ | external | `any[]` | The external dependencies | `[]` |
157
+ | noExternal | `any[]` | The dependencies that should not be treated as external | `[]` |
158
+ | skipNodeModulesBundle | `boolean` | Skip bundling node_modules during the build process (if required) | |
150
159
  | mode | "development" \| "test" \| "production" | The build mode | |
151
- | skipInstalls | `boolean` | Skip installing dependencies during prepare stage | |
152
- | logLevel | "error" \| "success" \| "silent" \| "fatal" \| "warn" \| "info" \| "debug" \| "trace" \| "all" | The log level to use for the build process | |
160
+ | logLevel | "fatal" \| "error" \| "warn" \| "success" \| "info" \| "debug" \| "trace" \| "silent" | The log level to use for the build process | |
161
+ | define | `object` | The \`define\` values | `[object Object]` |
153
162
 
154
163
 
155
164
 
156
165
 
157
- ## Powerlines Prepare Executor
166
+ ## Prepare Executor
158
167
 
159
168
  A type definition for the Powerlines - Prepare executor schema
160
169
 
@@ -174,18 +183,26 @@ The following executor options are available:
174
183
 
175
184
  | Option | Type | Description | Default |
176
185
  | --------- | ------ | ------------- | --------- |
177
- | outputPath | `string` | The output path for the build | "dist/{projectRoot}" |
186
+ | configFile | `string` | The path to the Powerlines configuration file | "{projectRoot}/powerlines.config.ts" |
187
+ | input | `string[]` | The entry file(s) that serve as the input for the project | |
178
188
  | tsconfig | `string` | The path to the tsconfig file | "{projectRoot}/tsconfig.json" |
189
+ | outputPath | `string` | The path to the output directory for the build artifacts | |
190
+ | sourceMap | `boolean` | Generate a sourcemap | |
191
+ | format | `string[]` | The format to build | `[]` |
192
+ | platform | "neutral" \| "node" \| "browser" | The platform to build | "neutral" |
193
+ | external | `any[]` | The external dependencies | `[]` |
194
+ | noExternal | `any[]` | The dependencies that should not be treated as external | `[]` |
195
+ | skipNodeModulesBundle | `boolean` | Skip bundling node_modules during the build process (if required) | |
179
196
  | mode | "development" \| "test" \| "production" | The build mode | |
180
- | skipInstalls | `boolean` | Skip installing dependencies during prepare stage | |
181
- | logLevel | "error" \| "success" \| "silent" \| "fatal" \| "warn" \| "info" \| "debug" \| "trace" \| "all" | The log level to use for the build process | |
182
- | skipCache | `boolean` | Skip the cache when building | |
183
- | clean | `boolean` | Automatically clean the project's output artifacts (if required) | |
197
+ | logLevel | "fatal" \| "error" \| "warn" \| "success" \| "info" \| "debug" \| "trace" \| "silent" | The log level to use for the build process | |
198
+ | define | `object` | The \`define\` values | `[object Object]` |
199
+ | autoInstall | `boolean` | Automatically install dependencies during prepare stage | |
200
+ | skipCache | `boolean` | Skip the caching mechanism during the build process (if required) | |
184
201
 
185
202
 
186
203
 
187
204
 
188
- ## Powerlines Lint Executor
205
+ ## Lint Executor
189
206
 
190
207
  A type definition for the Powerlines - Lint executor schema
191
208
 
@@ -205,18 +222,26 @@ The following executor options are available:
205
222
 
206
223
  | Option | Type | Description | Default |
207
224
  | --------- | ------ | ------------- | --------- |
208
- | outputPath | `string` | The output path for the build | "dist/{projectRoot}" |
225
+ | configFile | `string` | The path to the Powerlines configuration file | "{projectRoot}/powerlines.config.ts" |
226
+ | input | `string[]` | The entry file(s) that serve as the input for the project | |
209
227
  | tsconfig | `string` | The path to the tsconfig file | "{projectRoot}/tsconfig.json" |
228
+ | outputPath | `string` | The path to the output directory for the build artifacts | |
229
+ | sourceMap | `boolean` | Generate a sourcemap | |
230
+ | format | `string[]` | The format to build | `[]` |
231
+ | platform | "neutral" \| "node" \| "browser" | The platform to build | "neutral" |
232
+ | external | `any[]` | The external dependencies | `[]` |
233
+ | noExternal | `any[]` | The dependencies that should not be treated as external | `[]` |
234
+ | skipNodeModulesBundle | `boolean` | Skip bundling node_modules during the build process (if required) | |
210
235
  | mode | "development" \| "test" \| "production" | The build mode | |
211
- | skipInstalls | `boolean` | Skip installing dependencies during prepare stage | |
212
- | logLevel | "error" \| "success" \| "silent" \| "fatal" \| "warn" \| "info" \| "debug" \| "trace" \| "all" | The log level to use for the build process | |
213
- | skipCache | `boolean` | Skip the cache when building | |
214
- | clean | `boolean` | Automatically clean the project's output artifacts (if required) | |
236
+ | logLevel | "fatal" \| "error" \| "warn" \| "success" \| "info" \| "debug" \| "trace" \| "silent" | The log level to use for the build process | |
237
+ | define | `object` | The \`define\` values | `[object Object]` |
238
+ | autoInstall | `boolean` | Automatically install dependencies during prepare stage | |
239
+ | skipCache | `boolean` | Skip the caching mechanism during the build process (if required) | |
215
240
 
216
241
 
217
242
 
218
243
 
219
- ## Powerlines Build Executor
244
+ ## Build Executor
220
245
 
221
246
  A type definition for the Powerlines - Build executor schema
222
247
 
@@ -228,7 +253,7 @@ This executor can be used by executing the following in a command line utility:
228
253
  nx run my-project:build
229
254
  ```
230
255
 
231
- **Please note:** _The build executor should be included in the desired projects's `project.json` file.All required options must be included in the `options` property of the json._
256
+ **Please note:** _The build executor should be included in the desired projects's `project.json` file._
232
257
 
233
258
  ### Options
234
259
 
@@ -236,22 +261,27 @@ The following executor options are available:
236
261
 
237
262
  | Option | Type | Description | Default |
238
263
  | --------- | ------ | ------------- | --------- |
239
- | outputPath | `string` | The output path for the build | "dist/{projectRoot}" |
264
+ | configFile | `string` | The path to the Powerlines configuration file | "{projectRoot}/powerlines.config.ts" |
265
+ | input | `string[]` | The entry file(s) that serve as the input for the project | |
240
266
  | tsconfig | `string` | The path to the tsconfig file | "{projectRoot}/tsconfig.json" |
267
+ | outputPath | `string` | The path to the output directory for the build artifacts | |
268
+ | sourceMap | `boolean` | Generate a sourcemap | |
269
+ | format | `string[]` | The format to build | `[]` |
270
+ | platform | "neutral" \| "node" \| "browser" | The platform to build | "neutral" |
271
+ | external | `any[]` | The external dependencies | `[]` |
272
+ | noExternal | `any[]` | The dependencies that should not be treated as external | `[]` |
273
+ | skipNodeModulesBundle | `boolean` | Skip bundling node_modules during the build process (if required) | |
241
274
  | mode | "development" \| "test" \| "production" | The build mode | |
242
- | skipInstalls | `boolean` | Skip installing dependencies during prepare stage | |
243
- | logLevel | "error" \| "success" \| "silent" \| "fatal" \| "warn" \| "info" \| "debug" \| "trace" \| "all" | The log level to use for the build process | |
244
- | skipCache | `boolean` | Skip the cache when building | |
245
- | clean | `boolean` | Automatically clean the project's output artifacts (if required) | |
246
- | **entry \*** | `string` | The entry file or files to build | "{sourceRoot}/index.ts" |
247
- | skipLint | `boolean` | Skip the linting process ran prior to the build (if required) | |
248
-
275
+ | logLevel | "fatal" \| "error" \| "warn" \| "success" \| "info" \| "debug" \| "trace" \| "silent" | The log level to use for the build process | |
276
+ | define | `object` | The \`define\` values | `[object Object]` |
277
+ | autoInstall | `boolean` | Automatically install dependencies during prepare stage | |
278
+ | skipCache | `boolean` | Skip the caching mechanism during the build process (if required) | |
279
+ | entry | `any` | The entry path(s) for the package | `[object Object]` |
249
280
 
250
- **Please note:** _Option names followed by \* above are required, and must be provided to run the executor._
251
281
 
252
282
 
253
283
 
254
- ## Powerlines Docs Executor
284
+ ## Docs Executor
255
285
 
256
286
  A type definition for the Powerlines - Docs executor schema
257
287
 
@@ -271,13 +301,21 @@ The following executor options are available:
271
301
 
272
302
  | Option | Type | Description | Default |
273
303
  | --------- | ------ | ------------- | --------- |
274
- | outputPath | `string` | The output path for the build | "dist/{projectRoot}" |
304
+ | configFile | `string` | The path to the Powerlines configuration file | "{projectRoot}/powerlines.config.ts" |
305
+ | input | `string[]` | The entry file(s) that serve as the input for the project | |
275
306
  | tsconfig | `string` | The path to the tsconfig file | "{projectRoot}/tsconfig.json" |
307
+ | outputPath | `string` | The path to the output directory for the build artifacts | |
308
+ | sourceMap | `boolean` | Generate a sourcemap | |
309
+ | format | `string[]` | The format to build | `[]` |
310
+ | platform | "neutral" \| "node" \| "browser" | The platform to build | "neutral" |
311
+ | external | `any[]` | The external dependencies | `[]` |
312
+ | noExternal | `any[]` | The dependencies that should not be treated as external | `[]` |
313
+ | skipNodeModulesBundle | `boolean` | Skip bundling node_modules during the build process (if required) | |
276
314
  | mode | "development" \| "test" \| "production" | The build mode | |
277
- | skipInstalls | `boolean` | Skip installing dependencies during prepare stage | |
278
- | logLevel | "error" \| "success" \| "silent" \| "fatal" \| "warn" \| "info" \| "debug" \| "trace" \| "all" | The log level to use for the build process | |
279
- | skipCache | `boolean` | Skip the cache when building | |
280
- | clean | `boolean` | Automatically clean the project's output artifacts (if required) | |
315
+ | logLevel | "fatal" \| "error" \| "warn" \| "success" \| "info" \| "debug" \| "trace" \| "silent" | The log level to use for the build process | |
316
+ | define | `object` | The \`define\` values | `[object Object]` |
317
+ | autoInstall | `boolean` | Automatically install dependencies during prepare stage | |
318
+ | skipCache | `boolean` | Skip the caching mechanism during the build process (if required) | |
281
319
 
282
320
 
283
321
 
@@ -297,7 +335,7 @@ management:
297
335
  <!-- markdownlint-disable -->
298
336
 
299
337
 
300
- ## Powerlines Sync Generator
338
+ ## Sync Generator
301
339
 
302
340
  A type definition for the Powerlines - Sync generator's options
303
341
 
@@ -1,4 +1,4 @@
1
1
  require('../config-CGQhS8tm.js');
2
- const require_base_executor = require('../base-executor-BeaxMRjJ.js');
2
+ const require_base_executor = require('../base-executor-_Qs1Zf1s.js');
3
3
 
4
4
  exports.withExecutor = require_base_executor.withExecutor;
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../base-executor-SJIBQwB2.mjs";
1
+ import { t as withExecutor } from "../base-executor-FS96Egrh.mjs";
2
2
  import "../config-LoR-NIJg.mjs";
3
3
 
4
4
  export { withExecutor };
@@ -1,5 +1,5 @@
1
1
  require('../config-CGQhS8tm.js');
2
- const require_base_executor = require('../base-executor-BeaxMRjJ.js');
2
+ const require_base_executor = require('../base-executor-_Qs1Zf1s.js');
3
3
  require('../base-executor.untyped-Cz1Zw_02.js');
4
4
  require('../base-B7jekb-W.js');
5
5
 
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../base-executor-SJIBQwB2.mjs";
1
+ import { t as withExecutor } from "../base-executor-FS96Egrh.mjs";
2
2
  import "../config-LoR-NIJg.mjs";
3
3
  import "../base-executor.untyped-C1pQETnQ.mjs";
4
4
  import "../base-BRSa-clf.mjs";
@@ -78,7 +78,7 @@ import { resolve as resolve$1 } from "node:path";
78
78
  import "unplugin";
79
79
 
80
80
  //#region ../powerlines/package.json
81
- var version = "0.40.19";
81
+ var version = "0.40.21";
82
82
 
83
83
  //#endregion
84
84
  //#region ../powerlines/src/typescript/ts-morph.ts
@@ -4808,4 +4808,4 @@ ${error.stack}` : "Unknown error"}`);
4808
4808
 
4809
4809
  //#endregion
4810
4810
  export { withExecutor as t };
4811
- //# sourceMappingURL=base-executor-C59DiyUh.mjs.map
4811
+ //# sourceMappingURL=base-executor-FS96Egrh.mjs.map