@powerlines/nx 0.10.20 → 0.10.21

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 (40) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/{chunk-X7QXBIDS.js → chunk-2SGCH2CX.js} +2 -2
  3. package/dist/{chunk-FVXW6LDE.js → chunk-5ITUD4S2.js} +2981 -2711
  4. package/dist/{chunk-EX3O7O2B.js → chunk-62CNXBCW.js} +2 -2
  5. package/dist/{chunk-TO3WM5BR.js → chunk-7N6FX55G.js} +47 -6
  6. package/dist/{chunk-4F2AZ6CR.mjs → chunk-CCLGRDYC.mjs} +2972 -2702
  7. package/dist/{chunk-WN4V3Q7V.js → chunk-CGD3MCHE.js} +2 -2
  8. package/dist/{chunk-H4DMVLQJ.mjs → chunk-E3C75GKA.mjs} +1 -1
  9. package/dist/{chunk-GHJHSY4S.mjs → chunk-ECV5I6QT.mjs} +1 -1
  10. package/dist/{chunk-SDMJCGHR.mjs → chunk-GXGGZVKT.mjs} +1 -1
  11. package/dist/{chunk-DL2U52BR.mjs → chunk-NHE44K6R.mjs} +1 -1
  12. package/dist/{chunk-UKZ7TQQQ.js → chunk-QOJUBMCX.js} +2 -2
  13. package/dist/{chunk-FEJ2ZSZP.mjs → chunk-R6VKTKIJ.mjs} +1 -1
  14. package/dist/{chunk-RDLEKRFJ.mjs → chunk-TC4UAVKW.mjs} +1 -1
  15. package/dist/{chunk-D7WLM2B6.js → chunk-TS76BSIO.js} +2 -2
  16. package/dist/{chunk-OS7UD4XD.mjs → chunk-XRMEXEW2.mjs} +47 -6
  17. package/dist/{chunk-PWKMRXQL.js → chunk-ZTVXZ5Z2.js} +2 -2
  18. package/dist/executors.js +11 -11
  19. package/dist/executors.mjs +6 -6
  20. package/dist/index.js +14 -14
  21. package/dist/index.mjs +8 -8
  22. package/dist/src/base/base-executor.js +2 -2
  23. package/dist/src/base/base-executor.mjs +1 -1
  24. package/dist/src/executors/build/executor.js +4 -4
  25. package/dist/src/executors/build/executor.mjs +2 -2
  26. package/dist/src/executors/clean/executor.js +4 -4
  27. package/dist/src/executors/clean/executor.mjs +2 -2
  28. package/dist/src/executors/docs/executor.js +4 -4
  29. package/dist/src/executors/docs/executor.mjs +2 -2
  30. package/dist/src/executors/lint/executor.js +4 -4
  31. package/dist/src/executors/lint/executor.mjs +2 -2
  32. package/dist/src/executors/prepare/executor.js +4 -4
  33. package/dist/src/executors/prepare/executor.mjs +2 -2
  34. package/dist/src/helpers/plugin-utilities.js +4 -4
  35. package/dist/src/helpers/plugin-utilities.mjs +1 -1
  36. package/dist/src/plugin/index.js +3 -3
  37. package/dist/src/plugin/index.mjs +2 -2
  38. package/dist/src/types/plugin.d.mts +34 -0
  39. package/dist/src/types/plugin.d.ts +34 -0
  40. package/package.json +13 -13
@@ -169,6 +169,40 @@ interface NxPluginOptions {
169
169
  */
170
170
  executor?: string;
171
171
  };
172
+ deploy?: false | {
173
+ /**
174
+ * The name of the deploy target to use when deploying the project
175
+ *
176
+ * @defaultValue "deploy"
177
+ */
178
+ targetName?: string;
179
+ /**
180
+ * The name of the deploy configuration to use when deploying the project
181
+ *
182
+ * @defaultValue "production"
183
+ */
184
+ defaultConfiguration?: "production" | "test" | "development";
185
+ /**
186
+ * An array specifying any other target identifiers the deploy target depends on
187
+ *
188
+ * @defaultValue ["^deploy", "build"]
189
+ */
190
+ dependsOn?: string[];
191
+ /**
192
+ * An array specifying any input files or globs to consider when determining if the deploy target needs to be re-run
193
+ */
194
+ inputs?: string[] | "production" | "allProjectFiles" | "sharedGlobals" | "rust" | "typescript";
195
+ /**
196
+ * An array specifying the output files or globs generated by the deploy target
197
+ */
198
+ outputs?: string[];
199
+ /**
200
+ * The executor to use for the deploy target
201
+ *
202
+ * @defaultValue "\@powerlines/nx:deploy"
203
+ */
204
+ executor?: string;
205
+ };
172
206
  }
173
207
 
174
208
  export type { NxPluginOptions };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/nx",
3
- "version": "0.10.20",
3
+ "version": "0.10.21",
4
4
  "description": "A Nx plugin to support Powerlines development in Nx monorepos.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -181,13 +181,13 @@
181
181
  },
182
182
  "typings": "dist/index.d.ts",
183
183
  "dependencies": {
184
- "@nx/devkit": "^22.0.4",
185
- "@storm-software/build-tools": "^0.158.42",
186
- "@storm-software/config": "^1.134.42",
187
- "@storm-software/config-tools": "^1.188.42",
188
- "@storm-software/esbuild": "^0.53.42",
189
- "@storm-software/unbuild": "^0.57.42",
190
- "@storm-software/workspace-tools": "^1.293.12",
184
+ "@nx/devkit": "^22.1.0",
185
+ "@storm-software/build-tools": "^0.158.47",
186
+ "@storm-software/config": "^1.134.47",
187
+ "@storm-software/config-tools": "^1.188.47",
188
+ "@storm-software/esbuild": "^0.53.47",
189
+ "@storm-software/unbuild": "^0.57.47",
190
+ "@storm-software/workspace-tools": "^1.293.17",
191
191
  "@stryke/fs": "^0.32.13",
192
192
  "@stryke/hash": "^0.12.3",
193
193
  "@stryke/path": "^0.19.2",
@@ -195,12 +195,12 @@
195
195
  "@stryke/type-checks": "^0.3.12",
196
196
  "defu": "^6.1.4",
197
197
  "jiti": "^2.6.1",
198
- "nx": "^22.0.4",
199
- "powerlines": "^0.23.3"
198
+ "nx": "^22.1.0",
199
+ "powerlines": "^0.23.4"
200
200
  },
201
201
  "devDependencies": {
202
- "@nx/workspace": "^22.0.4",
203
- "@storm-software/testing-tools": "^1.119.42",
202
+ "@nx/workspace": "^22.1.0",
203
+ "@storm-software/testing-tools": "^1.119.47",
204
204
  "@types/node": "^24.10.1",
205
205
  "eslint-flat-config-utils": "^2.1.4",
206
206
  "jsonc-eslint-parser": "^2.4.1",
@@ -210,5 +210,5 @@
210
210
  "publishConfig": { "access": "public" },
211
211
  "executors": "./executors.json",
212
212
  "generators": "./generators.json",
213
- "gitHead": "6e43200541ace2946694195c092642e7ac2f3098"
213
+ "gitHead": "3075c08893a66a4e8d359e37f8d0344b0a80322b"
214
214
  }