@powerlines/nx 0.11.312 → 0.11.314

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/README.md CHANGED
@@ -54,24 +54,18 @@ A package containing tools for managing a Storm workspace. It includes various
54
54
 
55
55
  - [Installing](#installing)
56
56
  - [Executors](#executors)
57
- - [Clean Executor](#clean-executor)
57
+ - [clean](#clean)
58
58
  - [Example](#example)
59
- - [Options](#options)
60
- - [Prepare Executor](#prepare-executor)
59
+ - [prepare](#prepare)
61
60
  - [Example](#example-1)
62
- - [Options](#options-1)
63
- - [Lint Executor](#lint-executor)
61
+ - [lint](#lint)
64
62
  - [Example](#example-2)
65
- - [Options](#options-2)
66
- - [Build Executor](#build-executor)
63
+ - [build](#build)
67
64
  - [Example](#example-3)
68
- - [Options](#options-3)
69
- - [Docs Executor](#docs-executor)
65
+ - [docs](#docs)
70
66
  - [Example](#example-4)
71
- - [Options](#options-4)
72
67
  - [Generators](#generators)
73
- - [Sync Generator](#sync-generator)
74
- - [Options](#options-5)
68
+ - [typescript-sync](#typescript-sync)
75
69
  - [Building](#building)
76
70
  - [Running unit tests](#running-unit-tests)
77
71
  - [Storm Workspaces](#storm-workspaces)
@@ -124,9 +118,9 @@ the workspace's projects:
124
118
  <!-- markdownlint-disable -->
125
119
 
126
120
 
127
- ## Clean Executor
121
+ ## clean
128
122
 
129
- A type definition for the Powerlines - Clean executor schema
123
+ Run the \`clean\` Powerlines command on the given project
130
124
 
131
125
  ### Example
132
126
 
@@ -138,35 +132,11 @@ nx run my-project:clean
138
132
 
139
133
  **Please note:** _The clean executor should be included in the desired projects's `project.json` file._
140
134
 
141
- ### Options
142
135
 
143
- The following executor options are available:
144
136
 
145
- | Option | Type | Description | Default |
146
- | --------- | ------ | ------------- | --------- |
147
- | config | `string` | The path to the Powerlines configuration file. Alias for \`configFile\`. | "{projectRoot}/powerlines.config.ts" |
148
- | configFile | `string` | The path to the Powerlines configuration file. Alias for \`config\`. | "{projectRoot}/powerlines.config.ts" |
149
- | input | `string[]` | The entry file(s) that serve as the input for the project | |
150
- | tsconfig | `string` | The path to the tsconfig file | "{projectRoot}/tsconfig.json" |
151
- | outputPath | `string` | The path to the output directory for the build artifacts | |
152
- | copyPath | `any` | A directory path to copy the build artifacts into | `[object Object]` |
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) | |
159
- | mode | "development" \| "test" \| "production" | The build mode | |
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]` |
162
- | assets | `any` | The \`assets\` values | `[object Object]` |
137
+ ## prepare
163
138
 
164
-
165
-
166
-
167
- ## Prepare Executor
168
-
169
- A type definition for the Powerlines - Prepare executor schema
139
+ Run the \`prepare\` Powerlines command on the given project
170
140
 
171
141
  ### Example
172
142
 
@@ -178,37 +148,11 @@ nx run my-project:prepare
178
148
 
179
149
  **Please note:** _The prepare executor should be included in the desired projects's `project.json` file._
180
150
 
181
- ### Options
182
-
183
- The following executor options are available:
184
-
185
- | Option | Type | Description | Default |
186
- | --------- | ------ | ------------- | --------- |
187
- | config | `string` | The path to the Powerlines configuration file. Alias for \`configFile\`. | "{projectRoot}/powerlines.config.ts" |
188
- | configFile | `string` | The path to the Powerlines configuration file. Alias for \`config\`. | "{projectRoot}/powerlines.config.ts" |
189
- | input | `string[]` | The entry file(s) that serve as the input for the project | |
190
- | tsconfig | `string` | The path to the tsconfig file | "{projectRoot}/tsconfig.json" |
191
- | outputPath | `string` | The path to the output directory for the build artifacts | |
192
- | copyPath | `any` | A directory path to copy the build artifacts into | `[object Object]` |
193
- | sourceMap | `boolean` | Generate a sourcemap | |
194
- | format | `string[]` | The format to build | `[]` |
195
- | platform | "neutral" \| "node" \| "browser" | The platform to build | "neutral" |
196
- | external | `any[]` | The external dependencies | `[]` |
197
- | noExternal | `any[]` | The dependencies that should not be treated as external | `[]` |
198
- | skipNodeModulesBundle | `boolean` | Skip bundling node_modules during the build process (if required) | |
199
- | mode | "development" \| "test" \| "production" | The build mode | |
200
- | logLevel | "fatal" \| "error" \| "warn" \| "success" \| "info" \| "debug" \| "trace" \| "silent" | The log level to use for the build process | |
201
- | define | `object` | The \`define\` values | `[object Object]` |
202
- | assets | `any` | The \`assets\` values | `[object Object]` |
203
- | autoInstall | `boolean` | Automatically install dependencies during prepare stage | |
204
- | skipCache | `boolean` | Skip the caching mechanism during the build process (if required) | |
205
151
 
206
152
 
153
+ ## lint
207
154
 
208
-
209
- ## Lint Executor
210
-
211
- A type definition for the Powerlines - Lint executor schema
155
+ Run the \`lint\` Powerlines command on the given project
212
156
 
213
157
  ### Example
214
158
 
@@ -220,37 +164,11 @@ nx run my-project:lint
220
164
 
221
165
  **Please note:** _The lint executor should be included in the desired projects's `project.json` file._
222
166
 
223
- ### Options
224
-
225
- The following executor options are available:
226
-
227
- | Option | Type | Description | Default |
228
- | --------- | ------ | ------------- | --------- |
229
- | config | `string` | The path to the Powerlines configuration file. Alias for \`configFile\`. | "{projectRoot}/powerlines.config.ts" |
230
- | configFile | `string` | The path to the Powerlines configuration file. Alias for \`config\`. | "{projectRoot}/powerlines.config.ts" |
231
- | input | `string[]` | The entry file(s) that serve as the input for the project | |
232
- | tsconfig | `string` | The path to the tsconfig file | "{projectRoot}/tsconfig.json" |
233
- | outputPath | `string` | The path to the output directory for the build artifacts | |
234
- | copyPath | `any` | A directory path to copy the build artifacts into | `[object Object]` |
235
- | sourceMap | `boolean` | Generate a sourcemap | |
236
- | format | `string[]` | The format to build | `[]` |
237
- | platform | "neutral" \| "node" \| "browser" | The platform to build | "neutral" |
238
- | external | `any[]` | The external dependencies | `[]` |
239
- | noExternal | `any[]` | The dependencies that should not be treated as external | `[]` |
240
- | skipNodeModulesBundle | `boolean` | Skip bundling node_modules during the build process (if required) | |
241
- | mode | "development" \| "test" \| "production" | The build mode | |
242
- | logLevel | "fatal" \| "error" \| "warn" \| "success" \| "info" \| "debug" \| "trace" \| "silent" | The log level to use for the build process | |
243
- | define | `object` | The \`define\` values | `[object Object]` |
244
- | assets | `any` | The \`assets\` values | `[object Object]` |
245
- | autoInstall | `boolean` | Automatically install dependencies during prepare stage | |
246
- | skipCache | `boolean` | Skip the caching mechanism during the build process (if required) | |
247
-
248
-
249
167
 
250
168
 
251
- ## Build Executor
169
+ ## build
252
170
 
253
- A type definition for the Powerlines - Build executor schema
171
+ Run the \`build\` Powerlines command on the given project
254
172
 
255
173
  ### Example
256
174
 
@@ -262,38 +180,11 @@ nx run my-project:build
262
180
 
263
181
  **Please note:** _The build executor should be included in the desired projects's `project.json` file._
264
182
 
265
- ### Options
266
183
 
267
- The following executor options are available:
268
184
 
269
- | Option | Type | Description | Default |
270
- | --------- | ------ | ------------- | --------- |
271
- | config | `string` | The path to the Powerlines configuration file. Alias for \`configFile\`. | "{projectRoot}/powerlines.config.ts" |
272
- | configFile | `string` | The path to the Powerlines configuration file. Alias for \`config\`. | "{projectRoot}/powerlines.config.ts" |
273
- | input | `string[]` | The entry file(s) that serve as the input for the project | |
274
- | tsconfig | `string` | The path to the tsconfig file | "{projectRoot}/tsconfig.json" |
275
- | outputPath | `string` | The path to the output directory for the build artifacts | |
276
- | copyPath | `any` | A directory path to copy the build artifacts into | `[object Object]` |
277
- | sourceMap | `boolean` | Generate a sourcemap | |
278
- | format | `string[]` | The format to build | `[]` |
279
- | platform | "neutral" \| "node" \| "browser" | The platform to build | "neutral" |
280
- | external | `any[]` | The external dependencies | `[]` |
281
- | noExternal | `any[]` | The dependencies that should not be treated as external | `[]` |
282
- | skipNodeModulesBundle | `boolean` | Skip bundling node_modules during the build process (if required) | |
283
- | mode | "development" \| "test" \| "production" | The build mode | |
284
- | logLevel | "fatal" \| "error" \| "warn" \| "success" \| "info" \| "debug" \| "trace" \| "silent" | The log level to use for the build process | |
285
- | define | `object` | The \`define\` values | `[object Object]` |
286
- | assets | `any` | The \`assets\` values | `[object Object]` |
287
- | autoInstall | `boolean` | Automatically install dependencies during prepare stage | |
288
- | skipCache | `boolean` | Skip the caching mechanism during the build process (if required) | |
289
- | entry | `any` | The entry path(s) for the package | `[object Object]` |
185
+ ## docs
290
186
 
291
-
292
-
293
-
294
- ## Docs Executor
295
-
296
- A type definition for the Powerlines - Docs executor schema
187
+ Run the \`docs\` Powerlines command on the given project
297
188
 
298
189
  ### Example
299
190
 
@@ -305,32 +196,6 @@ nx run my-project:docs
305
196
 
306
197
  **Please note:** _The docs executor should be included in the desired projects's `project.json` file._
307
198
 
308
- ### Options
309
-
310
- The following executor options are available:
311
-
312
- | Option | Type | Description | Default |
313
- | --------- | ------ | ------------- | --------- |
314
- | config | `string` | The path to the Powerlines configuration file. Alias for \`configFile\`. | "{projectRoot}/powerlines.config.ts" |
315
- | configFile | `string` | The path to the Powerlines configuration file. Alias for \`config\`. | "{projectRoot}/powerlines.config.ts" |
316
- | input | `string[]` | The entry file(s) that serve as the input for the project | |
317
- | tsconfig | `string` | The path to the tsconfig file | "{projectRoot}/tsconfig.json" |
318
- | outputPath | `string` | The path to the output directory for the build artifacts | |
319
- | copyPath | `any` | A directory path to copy the build artifacts into | `[object Object]` |
320
- | sourceMap | `boolean` | Generate a sourcemap | |
321
- | format | `string[]` | The format to build | `[]` |
322
- | platform | "neutral" \| "node" \| "browser" | The platform to build | "neutral" |
323
- | external | `any[]` | The external dependencies | `[]` |
324
- | noExternal | `any[]` | The dependencies that should not be treated as external | `[]` |
325
- | skipNodeModulesBundle | `boolean` | Skip bundling node_modules during the build process (if required) | |
326
- | mode | "development" \| "test" \| "production" | The build mode | |
327
- | logLevel | "fatal" \| "error" \| "warn" \| "success" \| "info" \| "debug" \| "trace" \| "silent" | The log level to use for the build process | |
328
- | define | `object` | The \`define\` values | `[object Object]` |
329
- | assets | `any` | The \`assets\` values | `[object Object]` |
330
- | autoInstall | `boolean` | Automatically install dependencies during prepare stage | |
331
- | skipCache | `boolean` | Skip the caching mechanism during the build process (if required) | |
332
-
333
-
334
199
 
335
200
 
336
201
  <!-- markdownlint-restore -->
@@ -348,18 +213,9 @@ management:
348
213
  <!-- markdownlint-disable -->
349
214
 
350
215
 
351
- ## Sync Generator
352
-
353
- A type definition for the Powerlines - Sync generator's options
354
-
355
- ### Options
356
-
357
- The following executor options are available:
358
-
359
- | Option | Type | Description | Default |
360
- | --------- | ------ | ------------- | --------- |
361
- | outOfSyncMessage | `string` | The message to display when the project is out of sync with the legal-message.txt file | "The legal-message.txt file needs to be created" |
216
+ ## typescript-sync
362
217
 
218
+ Synchronize Powerlines projects based on the project graph
363
219
 
364
220
 
365
221
 
@@ -1,7 +1,7 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/base/base-executor.untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=base-executor.untyped.d.mts.map
@@ -1,6 +1,6 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/base/base-executor.untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  export = _default;
6
6
  //# sourceMappingURL=base-executor.untyped.d.ts.map
@@ -1,7 +1,7 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/executors/build/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=untyped.d.mts.map
@@ -1,6 +1,6 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/executors/build/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  export = _default;
6
6
  //# sourceMappingURL=untyped.d.ts.map
@@ -1,7 +1,7 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/executors/clean/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=untyped.d.mts.map
@@ -1,6 +1,6 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/executors/clean/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  export = _default;
6
6
  //# sourceMappingURL=untyped.d.ts.map
@@ -1,7 +1,7 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/executors/docs/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=untyped.d.mts.map
@@ -1,6 +1,6 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/executors/docs/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  export = _default;
6
6
  //# sourceMappingURL=untyped.d.ts.map
@@ -1,7 +1,7 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/executors/lint/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=untyped.d.mts.map
@@ -1,6 +1,6 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/executors/lint/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  export = _default;
6
6
  //# sourceMappingURL=untyped.d.ts.map
@@ -1,7 +1,7 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/executors/prepare/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=untyped.d.mts.map
@@ -1,6 +1,6 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/executors/prepare/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  export = _default;
6
6
  //# sourceMappingURL=untyped.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { Tree } from "@nx/devkit";
2
- import { SyncGeneratorResult } from "nx/src/utils/sync-generators";
2
+ import { SyncGeneratorResult } from "nx/src/utils/sync-generators.js";
3
3
 
4
4
  //#region src/generators/sync/generator.d.ts
5
5
  declare function generatorFn(tree: Tree): Promise<SyncGeneratorResult>;
@@ -1,5 +1,5 @@
1
1
  import { Tree } from "@nx/devkit";
2
- import { SyncGeneratorResult } from "nx/src/utils/sync-generators";
2
+ import { SyncGeneratorResult } from "nx/src/utils/sync-generators.js";
3
3
 
4
4
  //#region src/generators/sync/generator.d.ts
5
5
  declare function generatorFn(tree: Tree): Promise<SyncGeneratorResult>;
@@ -1,7 +1,7 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/generators/sync/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  //#endregion
6
6
  export { _default as default };
7
7
  //# sourceMappingURL=untyped.d.mts.map
@@ -1,6 +1,6 @@
1
- import * as untyped from "untyped";
1
+ import * as _$untyped from "untyped";
2
2
 
3
3
  //#region src/generators/sync/untyped.d.ts
4
- declare const _default: untyped.SchemaDefinition;
4
+ declare const _default: _$untyped.SchemaDefinition;
5
5
  export = _default;
6
6
  //# sourceMappingURL=untyped.d.ts.map
@@ -1,4 +1,4 @@
1
- import * as _nx_devkit0 from "@nx/devkit";
1
+ import * as _$_nx_devkit0 from "@nx/devkit";
2
2
 
3
3
  //#region src/types/plugin.d.ts
4
4
  interface NxPluginOptions {
@@ -242,7 +242,7 @@ interface NxPluginOptions {
242
242
  }
243
243
  //#endregion
244
244
  //#region src/plugin/index.d.ts
245
- declare const createNodesV2: _nx_devkit0.CreateNodesV2<NxPluginOptions>;
245
+ declare const createNodesV2: _$_nx_devkit0.CreateNodesV2<NxPluginOptions>;
246
246
  //#endregion
247
247
  export { createNodesV2 };
248
248
  //# sourceMappingURL=index.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../../../src/types/plugin.ts","../../../src/plugin/index.ts"],"mappings":";;;UAkBiB,eAAA;;;AAAjB;EAIE,KAAA;IAJ8B;;;;;IAYxB,UAAA;IAmBA;;;;;IAZA,oBAAA;IA6DA;;;;;IAtDA,SAAA;IAqGA;;;IAhGA,MAAA;IAiIA;;;IAnHA,OAAA;IA+IA;;;;;IAxIA,QAAA;EAAA;EA8LA;;;EAxLN,OAAA;IAwNA;;;;;IAhNM,UAAA;IA6PA;;;;;IAtPA,oBAAA;;;ACtER;;;ID6EQ,SAAA;IC7EkB;;;IDkFlB,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,IAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,KAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,IAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,MAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAWA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;;;;;;EAWN,aAAA;;;;;;EAOA,KAAA;AAAA;;;cC9UW,aAAA,EAAa,WAAA,CAAA,aAAA,CAAA,eAAA"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../../../src/types/plugin.ts","../../../src/plugin/index.ts"],"mappings":";;;UAkBiB,eAAA;;;AAAjB;EAIE,KAAA;IAJ8B;;;;;IAYxB,UAAA;IAmBA;;;;;IAZA,oBAAA;IA6DA;;;;;IAtDA,SAAA;IAqGA;;;IAhGA,MAAA;IAiIA;;;IAnHA,OAAA;IA+IA;;;;;IAxIA,QAAA;EAAA;EA8LA;;;EAxLN,OAAA;IAwNA;;;;;IAhNM,UAAA;IA6PA;;;;;IAtPA,oBAAA;;;ACtER;;;ID6EQ,SAAA;IC7EkB;;;IDkFlB,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,IAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,KAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,IAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,MAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAWA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;;;;;;EAWN,aAAA;;;;;;EAOA,KAAA;AAAA;;;cC9UW,aAAA,EAAa,aAAA,CAAA,aAAA,CAAA,eAAA"}
@@ -1,4 +1,4 @@
1
- import * as _nx_devkit0 from "@nx/devkit";
1
+ import * as _$_nx_devkit0 from "@nx/devkit";
2
2
 
3
3
  //#region src/types/plugin.d.ts
4
4
  interface NxPluginOptions {
@@ -242,7 +242,7 @@ interface NxPluginOptions {
242
242
  }
243
243
  //#endregion
244
244
  //#region src/plugin/index.d.ts
245
- declare const createNodesV2: _nx_devkit0.CreateNodesV2<NxPluginOptions>;
245
+ declare const createNodesV2: _$_nx_devkit0.CreateNodesV2<NxPluginOptions>;
246
246
  //#endregion
247
247
  export { createNodesV2 };
248
248
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/types/plugin.ts","../../../src/plugin/index.ts"],"mappings":";;;UAkBiB,eAAA;;;AAAjB;EAIE,KAAA;IAJ8B;;;;;IAYxB,UAAA;IAmBA;;;;;IAZA,oBAAA;IA6DA;;;;;IAtDA,SAAA;IAqGA;;;IAhGA,MAAA;IAiIA;;;IAnHA,OAAA;IA+IA;;;;;IAxIA,QAAA;EAAA;EA8LA;;;EAxLN,OAAA;IAwNA;;;;;IAhNM,UAAA;IA6PA;;;;;IAtPA,oBAAA;;;ACtER;;;ID6EQ,SAAA;IC7EkB;;;IDkFlB,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,IAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,KAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,IAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,MAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAWA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;;;;;;EAWN,aAAA;;;;;;EAOA,KAAA;AAAA;;;cC9UW,aAAA,EAAa,WAAA,CAAA,aAAA,CAAA,eAAA"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../../../src/types/plugin.ts","../../../src/plugin/index.ts"],"mappings":";;;UAkBiB,eAAA;;;AAAjB;EAIE,KAAA;IAJ8B;;;;;IAYxB,UAAA;IAmBA;;;;;IAZA,oBAAA;IA6DA;;;;;IAtDA,SAAA;IAqGA;;;IAhGA,MAAA;IAiIA;;;IAnHA,OAAA;IA+IA;;;;;IAxIA,QAAA;EAAA;EA8LA;;;EAxLN,OAAA;IAwNA;;;;;IAhNM,UAAA;IA6PA;;;;;IAtPA,oBAAA;;;ACtER;;;ID6EQ,SAAA;IC7EkB;;;IDkFlB,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,IAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,KAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,IAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAcA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;EAMN,MAAA;;;;;;IAQM,UAAA;;;;;;IAOA,oBAAA;;;;;;IAOA,SAAA;;;;IAKA,MAAA;;;;IAWA,OAAA;;;;;;IAOA,QAAA;EAAA;;;;;;;;;EAWN,aAAA;;;;;;EAOA,KAAA;AAAA;;;cC9UW,aAAA,EAAa,aAAA,CAAA,aAAA,CAAA,eAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/nx",
3
- "version": "0.11.312",
3
+ "version": "0.11.314",
4
4
  "private": false,
5
5
  "type": "commonjs",
6
6
  "description": "A Nx plugin to support Powerlines development in Nx monorepos.",
@@ -173,11 +173,11 @@
173
173
  "module": "./dist/src/index.mjs",
174
174
  "typings": "./dist/src/index.d.ts",
175
175
  "dependencies": {
176
- "@nx/devkit": "^22.6.2",
177
- "@storm-software/build-tools": "^0.158.141",
178
- "@storm-software/config": "^1.137.14",
179
- "@storm-software/config-tools": "^1.189.60",
180
- "@storm-software/workspace-tools": "^1.295.36",
176
+ "@nx/devkit": "^22.6.3",
177
+ "@storm-software/build-tools": "^0.158.145",
178
+ "@storm-software/config": "^1.137.18",
179
+ "@storm-software/config-tools": "^1.189.64",
180
+ "@storm-software/workspace-tools": "^1.295.40",
181
181
  "@stryke/env": "^0.20.81",
182
182
  "@stryke/fs": "^0.33.64",
183
183
  "@stryke/hash": "^0.13.17",
@@ -189,14 +189,14 @@
189
189
  },
190
190
  "devDependencies": {
191
191
  "@nx/workspace": "22.6.2",
192
- "@storm-software/testing-tools": "^1.119.135",
193
- "@storm-software/tsup": "^0.2.139",
194
- "@storm-software/untyped": "^0.24.123",
192
+ "@storm-software/testing-tools": "^1.119.139",
193
+ "@storm-software/tsup": "^0.2.143",
194
+ "@storm-software/untyped": "^0.24.127",
195
195
  "@types/node": "^25.5.0",
196
196
  "eslint-flat-config-utils": "^2.1.4",
197
197
  "jsonc-eslint-parser": "^2.4.2",
198
198
  "nx": "22.6.2",
199
- "powerlines": "^0.42.24",
199
+ "powerlines": "^0.42.26",
200
200
  "untyped": "^1.5.2"
201
201
  },
202
202
  "peerDependencies": { "nx": ">=22.5.0", "powerlines": ">=0.39.2" },
@@ -207,5 +207,5 @@
207
207
  "publishConfig": { "access": "public" },
208
208
  "executors": "./executors.json",
209
209
  "generators": "./generators.json",
210
- "gitHead": "7230bc7bb8f070d2188b0cade2e512c042f50783"
210
+ "gitHead": "a9c2c780046fa83980901c76d9c21ab1c0276fd8"
211
211
  }