@powerlines/nx 0.11.289 → 0.11.291

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.
@@ -56,9 +56,9 @@ interface BaseExecutorSchema {
56
56
  * The path to the publish directory for the build artifacts
57
57
  *
58
58
  *
59
- * @format path
59
+ * @oneOf [object Object],[object Object]
60
60
  */
61
- publishPath?: string;
61
+ publishPath?: any;
62
62
  /**
63
63
  * Sourcemap
64
64
  *
@@ -56,9 +56,9 @@ interface BaseExecutorSchema {
56
56
  * The path to the publish directory for the build artifacts
57
57
  *
58
58
  *
59
- * @format path
59
+ * @oneOf [object Object],[object Object]
60
60
  */
61
- publishPath?: string;
61
+ publishPath?: any;
62
62
  /**
63
63
  * Sourcemap
64
64
  *
@@ -47,10 +47,22 @@
47
47
  },
48
48
  "publishPath": {
49
49
  "title": "Publish Path",
50
- "type": "string",
51
- "format": "path",
52
50
  "description": "The path to the publish directory for the build artifacts",
53
- "id": "#publishPath"
51
+ "oneOf": [
52
+ {
53
+ "type": "string",
54
+ "format": "path"
55
+ },
56
+ {
57
+ "type": "boolean",
58
+ "enum": [
59
+ false
60
+ ]
61
+ }
62
+ ],
63
+ "id": "#publishPath",
64
+ "type": "any",
65
+ "default": {}
54
66
  },
55
67
  "sourceMap": {
56
68
  "title": "Sourcemap",
@@ -155,6 +167,7 @@
155
167
  "config": "{projectRoot}/powerlines.config.ts",
156
168
  "configFile": "{projectRoot}/powerlines.config.ts",
157
169
  "tsconfig": "{projectRoot}/tsconfig.json",
170
+ "publishPath": {},
158
171
  "format": [
159
172
  "cjs",
160
173
  "esm"
@@ -51,9 +51,14 @@ var base_executor_untyped_default = (0, untyped.defineUntypedSchema)({
51
51
  } },
52
52
  publishPath: { $schema: {
53
53
  title: "Publish Path",
54
- type: "string",
55
- format: "path",
56
- description: "The path to the publish directory for the build artifacts"
54
+ description: "The path to the publish directory for the build artifacts",
55
+ oneOf: [{
56
+ type: "string",
57
+ format: "path"
58
+ }, {
59
+ type: "boolean",
60
+ enum: [false]
61
+ }]
57
62
  } },
58
63
  sourceMap: { $schema: {
59
64
  title: "Sourcemap",
@@ -50,9 +50,14 @@ var base_executor_untyped_default = defineUntypedSchema({
50
50
  } },
51
51
  publishPath: { $schema: {
52
52
  title: "Publish Path",
53
- type: "string",
54
- format: "path",
55
- description: "The path to the publish directory for the build artifacts"
53
+ description: "The path to the publish directory for the build artifacts",
54
+ oneOf: [{
55
+ type: "string",
56
+ format: "path"
57
+ }, {
58
+ type: "boolean",
59
+ enum: [false]
60
+ }]
56
61
  } },
57
62
  sourceMap: { $schema: {
58
63
  title: "Sourcemap",
@@ -1 +1 @@
1
- {"version":3,"file":"base-executor.untyped.mjs","names":[],"sources":["../../../src/base/base-executor.untyped.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { defineUntypedSchema } from \"untyped\";\n\nexport default defineUntypedSchema({\n $schema: {\n id: \"BaseExecutorSchema\",\n title: \"Base Executor\",\n description:\n \"A shared/base schema type definition for Powerlines executors\",\n required: []\n },\n config: {\n $schema: {\n title: \"Powerlines Configuration File\",\n type: \"string\",\n format: \"path\",\n description:\n \"The path to the Powerlines configuration file. Alias for `configFile`.\"\n },\n $default: \"{projectRoot}/powerlines.config.ts\"\n },\n configFile: {\n $schema: {\n title: \"Powerlines Configuration File\",\n type: \"string\",\n format: \"path\",\n description:\n \"The path to the Powerlines configuration file. Alias for `config`.\"\n },\n $default: \"{projectRoot}/powerlines.config.ts\"\n },\n input: {\n $schema: {\n title: \"Input Entry File(s)\",\n format: \"path\",\n type: \"array\",\n description: \"The entry file(s) that serve as the input for the project\",\n items: { type: \"string\" }\n }\n },\n tsconfig: {\n $schema: {\n title: \"TSConfig Path\",\n type: \"string\",\n format: \"path\",\n description: \"The path to the tsconfig file\"\n },\n $default: \"{projectRoot}/tsconfig.json\"\n },\n outputPath: {\n $schema: {\n title: \"Output Path\",\n type: \"string\",\n format: \"path\",\n description: \"The path to the output directory for the build artifacts\"\n }\n },\n publishPath: {\n $schema: {\n title: \"Publish Path\",\n type: \"string\",\n format: \"path\",\n description: \"The path to the publish directory for the build artifacts\"\n }\n },\n sourceMap: {\n $schema: {\n title: \"Sourcemap\",\n type: \"boolean\",\n description: \"Generate a sourcemap\"\n }\n },\n format: {\n $schema: {\n title: \"Format\",\n type: \"array\",\n description: \"The format to build\",\n items: {\n type: \"string\",\n enum: [\"cjs\", \"esm\", \"iife\"]\n }\n },\n $resolve: (val: string[] = [\"cjs\", \"esm\"]) => ([] as string[]).concat(val)\n },\n platform: {\n $schema: {\n title: \"Platform\",\n type: \"string\",\n description: \"The platform to build\",\n enum: [\"neutral\", \"node\", \"browser\"]\n },\n $default: \"neutral\"\n },\n external: {\n $schema: {\n title: \"External\",\n type: \"array\",\n description: \"The external dependencies\"\n },\n $resolve: (val: string[] = []) => ([] as string[]).concat(val)\n },\n noExternal: {\n $schema: {\n title: \"No External\",\n type: \"array\",\n description: \"The dependencies that should not be treated as external\"\n },\n $resolve: (val: string[] = []) => ([] as string[]).concat(val)\n },\n skipNodeModulesBundle: {\n $schema: {\n title: \"Skip Node Modules Bundle\",\n type: \"boolean\",\n description:\n \"Skip bundling node_modules during the build process (if required)\"\n }\n },\n mode: {\n $schema: {\n title: \"Mode\",\n type: \"string\",\n description: \"The build mode\",\n enum: [\"development\", \"test\", \"production\"]\n }\n },\n logLevel: {\n $schema: {\n title: \"Log Level\",\n type: \"string\",\n description: \"The log level to use for the build process\",\n enum: [\n \"fatal\",\n \"error\",\n \"warn\",\n \"success\",\n \"info\",\n \"debug\",\n \"trace\",\n \"silent\"\n ]\n }\n },\n define: {\n $schema: {\n title: \"Define\",\n type: \"object\",\n tsType: \"Record<string, string>\",\n description: \"The `define` values\"\n },\n $resolve: (val: Record<string, string> = {}) => val,\n $default: {}\n }\n});\n"],"mappings":";;;AAoBA,oCAAe,oBAAoB;CACjC,SAAS;EACP,IAAI;EACJ,OAAO;EACP,aACE;EACF,UAAU,EAAE;EACb;CACD,QAAQ;EACN,SAAS;GACP,OAAO;GACP,MAAM;GACN,QAAQ;GACR,aACE;GACH;EACD,UAAU;EACX;CACD,YAAY;EACV,SAAS;GACP,OAAO;GACP,MAAM;GACN,QAAQ;GACR,aACE;GACH;EACD,UAAU;EACX;CACD,OAAO,EACL,SAAS;EACP,OAAO;EACP,QAAQ;EACR,MAAM;EACN,aAAa;EACb,OAAO,EAAE,MAAM,UAAU;EAC1B,EACF;CACD,UAAU;EACR,SAAS;GACP,OAAO;GACP,MAAM;GACN,QAAQ;GACR,aAAa;GACd;EACD,UAAU;EACX;CACD,YAAY,EACV,SAAS;EACP,OAAO;EACP,MAAM;EACN,QAAQ;EACR,aAAa;EACd,EACF;CACD,aAAa,EACX,SAAS;EACP,OAAO;EACP,MAAM;EACN,QAAQ;EACR,aAAa;EACd,EACF;CACD,WAAW,EACT,SAAS;EACP,OAAO;EACP,MAAM;EACN,aAAa;EACd,EACF;CACD,QAAQ;EACN,SAAS;GACP,OAAO;GACP,MAAM;GACN,aAAa;GACb,OAAO;IACL,MAAM;IACN,MAAM;KAAC;KAAO;KAAO;KAAO;IAC7B;GACF;EACD,WAAW,MAAgB,CAAC,OAAO,MAAM,KAAM,EAAE,CAAc,OAAO,IAAI;EAC3E;CACD,UAAU;EACR,SAAS;GACP,OAAO;GACP,MAAM;GACN,aAAa;GACb,MAAM;IAAC;IAAW;IAAQ;IAAU;GACrC;EACD,UAAU;EACX;CACD,UAAU;EACR,SAAS;GACP,OAAO;GACP,MAAM;GACN,aAAa;GACd;EACD,WAAW,MAAgB,EAAE,KAAM,EAAE,CAAc,OAAO,IAAI;EAC/D;CACD,YAAY;EACV,SAAS;GACP,OAAO;GACP,MAAM;GACN,aAAa;GACd;EACD,WAAW,MAAgB,EAAE,KAAM,EAAE,CAAc,OAAO,IAAI;EAC/D;CACD,uBAAuB,EACrB,SAAS;EACP,OAAO;EACP,MAAM;EACN,aACE;EACH,EACF;CACD,MAAM,EACJ,SAAS;EACP,OAAO;EACP,MAAM;EACN,aAAa;EACb,MAAM;GAAC;GAAe;GAAQ;GAAa;EAC5C,EACF;CACD,UAAU,EACR,SAAS;EACP,OAAO;EACP,MAAM;EACN,aAAa;EACb,MAAM;GACJ;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACD;EACF,EACF;CACD,QAAQ;EACN,SAAS;GACP,OAAO;GACP,MAAM;GACN,QAAQ;GACR,aAAa;GACd;EACD,WAAW,MAA8B,EAAE,KAAK;EAChD,UAAU,EAAE;EACb;CACF,CAAC"}
1
+ {"version":3,"file":"base-executor.untyped.mjs","names":[],"sources":["../../../src/base/base-executor.untyped.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { defineUntypedSchema } from \"untyped\";\n\nexport default defineUntypedSchema({\n $schema: {\n id: \"BaseExecutorSchema\",\n title: \"Base Executor\",\n description:\n \"A shared/base schema type definition for Powerlines executors\",\n required: []\n },\n config: {\n $schema: {\n title: \"Powerlines Configuration File\",\n type: \"string\",\n format: \"path\",\n description:\n \"The path to the Powerlines configuration file. Alias for `configFile`.\"\n },\n $default: \"{projectRoot}/powerlines.config.ts\"\n },\n configFile: {\n $schema: {\n title: \"Powerlines Configuration File\",\n type: \"string\",\n format: \"path\",\n description:\n \"The path to the Powerlines configuration file. Alias for `config`.\"\n },\n $default: \"{projectRoot}/powerlines.config.ts\"\n },\n input: {\n $schema: {\n title: \"Input Entry File(s)\",\n format: \"path\",\n type: \"array\",\n description: \"The entry file(s) that serve as the input for the project\",\n items: { type: \"string\" }\n }\n },\n tsconfig: {\n $schema: {\n title: \"TSConfig Path\",\n type: \"string\",\n format: \"path\",\n description: \"The path to the tsconfig file\"\n },\n $default: \"{projectRoot}/tsconfig.json\"\n },\n outputPath: {\n $schema: {\n title: \"Output Path\",\n type: \"string\",\n format: \"path\",\n description: \"The path to the output directory for the build artifacts\"\n }\n },\n publishPath: {\n $schema: {\n title: \"Publish Path\",\n description: \"The path to the publish directory for the build artifacts\",\n oneOf: [\n { type: \"string\", format: \"path\" },\n { type: \"boolean\", enum: [false] }\n ]\n }\n },\n sourceMap: {\n $schema: {\n title: \"Sourcemap\",\n type: \"boolean\",\n description: \"Generate a sourcemap\"\n }\n },\n format: {\n $schema: {\n title: \"Format\",\n type: \"array\",\n description: \"The format to build\",\n items: {\n type: \"string\",\n enum: [\"cjs\", \"esm\", \"iife\"]\n }\n },\n $resolve: (val: string[] = [\"cjs\", \"esm\"]) => ([] as string[]).concat(val)\n },\n platform: {\n $schema: {\n title: \"Platform\",\n type: \"string\",\n description: \"The platform to build\",\n enum: [\"neutral\", \"node\", \"browser\"]\n },\n $default: \"neutral\"\n },\n external: {\n $schema: {\n title: \"External\",\n type: \"array\",\n description: \"The external dependencies\"\n },\n $resolve: (val: string[] = []) => ([] as string[]).concat(val)\n },\n noExternal: {\n $schema: {\n title: \"No External\",\n type: \"array\",\n description: \"The dependencies that should not be treated as external\"\n },\n $resolve: (val: string[] = []) => ([] as string[]).concat(val)\n },\n skipNodeModulesBundle: {\n $schema: {\n title: \"Skip Node Modules Bundle\",\n type: \"boolean\",\n description:\n \"Skip bundling node_modules during the build process (if required)\"\n }\n },\n mode: {\n $schema: {\n title: \"Mode\",\n type: \"string\",\n description: \"The build mode\",\n enum: [\"development\", \"test\", \"production\"]\n }\n },\n logLevel: {\n $schema: {\n title: \"Log Level\",\n type: \"string\",\n description: \"The log level to use for the build process\",\n enum: [\n \"fatal\",\n \"error\",\n \"warn\",\n \"success\",\n \"info\",\n \"debug\",\n \"trace\",\n \"silent\"\n ]\n }\n },\n define: {\n $schema: {\n title: \"Define\",\n type: \"object\",\n tsType: \"Record<string, string>\",\n description: \"The `define` values\"\n },\n $resolve: (val: Record<string, string> = {}) => val,\n $default: {}\n }\n});\n"],"mappings":";;;AAoBA,oCAAe,oBAAoB;CACjC,SAAS;EACP,IAAI;EACJ,OAAO;EACP,aACE;EACF,UAAU,EAAE;EACb;CACD,QAAQ;EACN,SAAS;GACP,OAAO;GACP,MAAM;GACN,QAAQ;GACR,aACE;GACH;EACD,UAAU;EACX;CACD,YAAY;EACV,SAAS;GACP,OAAO;GACP,MAAM;GACN,QAAQ;GACR,aACE;GACH;EACD,UAAU;EACX;CACD,OAAO,EACL,SAAS;EACP,OAAO;EACP,QAAQ;EACR,MAAM;EACN,aAAa;EACb,OAAO,EAAE,MAAM,UAAU;EAC1B,EACF;CACD,UAAU;EACR,SAAS;GACP,OAAO;GACP,MAAM;GACN,QAAQ;GACR,aAAa;GACd;EACD,UAAU;EACX;CACD,YAAY,EACV,SAAS;EACP,OAAO;EACP,MAAM;EACN,QAAQ;EACR,aAAa;EACd,EACF;CACD,aAAa,EACX,SAAS;EACP,OAAO;EACP,aAAa;EACb,OAAO,CACL;GAAE,MAAM;GAAU,QAAQ;GAAQ,EAClC;GAAE,MAAM;GAAW,MAAM,CAAC,MAAM;GAAE,CACnC;EACF,EACF;CACD,WAAW,EACT,SAAS;EACP,OAAO;EACP,MAAM;EACN,aAAa;EACd,EACF;CACD,QAAQ;EACN,SAAS;GACP,OAAO;GACP,MAAM;GACN,aAAa;GACb,OAAO;IACL,MAAM;IACN,MAAM;KAAC;KAAO;KAAO;KAAO;IAC7B;GACF;EACD,WAAW,MAAgB,CAAC,OAAO,MAAM,KAAM,EAAE,CAAc,OAAO,IAAI;EAC3E;CACD,UAAU;EACR,SAAS;GACP,OAAO;GACP,MAAM;GACN,aAAa;GACb,MAAM;IAAC;IAAW;IAAQ;IAAU;GACrC;EACD,UAAU;EACX;CACD,UAAU;EACR,SAAS;GACP,OAAO;GACP,MAAM;GACN,aAAa;GACd;EACD,WAAW,MAAgB,EAAE,KAAM,EAAE,CAAc,OAAO,IAAI;EAC/D;CACD,YAAY;EACV,SAAS;GACP,OAAO;GACP,MAAM;GACN,aAAa;GACd;EACD,WAAW,MAAgB,EAAE,KAAM,EAAE,CAAc,OAAO,IAAI;EAC/D;CACD,uBAAuB,EACrB,SAAS;EACP,OAAO;EACP,MAAM;EACN,aACE;EACH,EACF;CACD,MAAM,EACJ,SAAS;EACP,OAAO;EACP,MAAM;EACN,aAAa;EACb,MAAM;GAAC;GAAe;GAAQ;GAAa;EAC5C,EACF;CACD,UAAU,EACR,SAAS;EACP,OAAO;EACP,MAAM;EACN,aAAa;EACb,MAAM;GACJ;GACA;GACA;GACA;GACA;GACA;GACA;GACA;GACD;EACF,EACF;CACD,QAAQ;EACN,SAAS;GACP,OAAO;GACP,MAAM;GACN,QAAQ;GACR,aAAa;GACd;EACD,WAAW,MAA8B,EAAE,KAAK;EAChD,UAAU,EAAE;EACb;CACF,CAAC"}
@@ -61,9 +61,9 @@ interface BuildExecutorSchema {
61
61
  * The path to the publish directory for the build artifacts
62
62
  *
63
63
  *
64
- * @format path
64
+ * @oneOf [object Object],[object Object]
65
65
  */
66
- publishPath?: string;
66
+ publishPath?: any;
67
67
  /**
68
68
  * Sourcemap
69
69
  *
@@ -61,9 +61,9 @@ interface BuildExecutorSchema {
61
61
  * The path to the publish directory for the build artifacts
62
62
  *
63
63
  *
64
- * @format path
64
+ * @oneOf [object Object],[object Object]
65
65
  */
66
- publishPath?: string;
66
+ publishPath?: any;
67
67
  /**
68
68
  * Sourcemap
69
69
  *
@@ -62,9 +62,9 @@ export interface BuildExecutorSchema {
62
62
  * The path to the publish directory for the build artifacts
63
63
  *
64
64
  *
65
- * @format path
65
+ * @oneOf [object Object],[object Object]
66
66
  */
67
- publishPath?: string,
67
+ publishPath?: any,
68
68
 
69
69
  /**
70
70
  * Sourcemap
@@ -47,10 +47,22 @@
47
47
  },
48
48
  "publishPath": {
49
49
  "title": "Publish Path",
50
- "type": "string",
51
- "format": "path",
52
50
  "description": "The path to the publish directory for the build artifacts",
53
- "id": "#publishPath"
51
+ "oneOf": [
52
+ {
53
+ "type": "string",
54
+ "format": "path"
55
+ },
56
+ {
57
+ "type": "boolean",
58
+ "enum": [
59
+ false
60
+ ]
61
+ }
62
+ ],
63
+ "id": "#publishPath",
64
+ "type": "any",
65
+ "default": {}
54
66
  },
55
67
  "sourceMap": {
56
68
  "title": "Sourcemap",
@@ -185,6 +197,7 @@
185
197
  "config": "{projectRoot}/powerlines.config.ts",
186
198
  "configFile": "{projectRoot}/powerlines.config.ts",
187
199
  "tsconfig": "{projectRoot}/tsconfig.json",
200
+ "publishPath": {},
188
201
  "format": [
189
202
  "cjs",
190
203
  "esm"
@@ -61,9 +61,9 @@ interface CleanExecutorSchema {
61
61
  * The path to the publish directory for the build artifacts
62
62
  *
63
63
  *
64
- * @format path
64
+ * @oneOf [object Object],[object Object]
65
65
  */
66
- publishPath?: string;
66
+ publishPath?: any;
67
67
  /**
68
68
  * Sourcemap
69
69
  *
@@ -61,9 +61,9 @@ interface CleanExecutorSchema {
61
61
  * The path to the publish directory for the build artifacts
62
62
  *
63
63
  *
64
- * @format path
64
+ * @oneOf [object Object],[object Object]
65
65
  */
66
- publishPath?: string;
66
+ publishPath?: any;
67
67
  /**
68
68
  * Sourcemap
69
69
  *
@@ -62,9 +62,9 @@ export interface CleanExecutorSchema {
62
62
  * The path to the publish directory for the build artifacts
63
63
  *
64
64
  *
65
- * @format path
65
+ * @oneOf [object Object],[object Object]
66
66
  */
67
- publishPath?: string,
67
+ publishPath?: any,
68
68
 
69
69
  /**
70
70
  * Sourcemap
@@ -47,10 +47,22 @@
47
47
  },
48
48
  "publishPath": {
49
49
  "title": "Publish Path",
50
- "type": "string",
51
- "format": "path",
52
50
  "description": "The path to the publish directory for the build artifacts",
53
- "id": "#publishPath"
51
+ "oneOf": [
52
+ {
53
+ "type": "string",
54
+ "format": "path"
55
+ },
56
+ {
57
+ "type": "boolean",
58
+ "enum": [
59
+ false
60
+ ]
61
+ }
62
+ ],
63
+ "id": "#publishPath",
64
+ "type": "any",
65
+ "default": {}
54
66
  },
55
67
  "sourceMap": {
56
68
  "title": "Sourcemap",
@@ -155,6 +167,7 @@
155
167
  "config": "{projectRoot}/powerlines.config.ts",
156
168
  "configFile": "{projectRoot}/powerlines.config.ts",
157
169
  "tsconfig": "{projectRoot}/tsconfig.json",
170
+ "publishPath": {},
158
171
  "format": [
159
172
  "cjs",
160
173
  "esm"
@@ -61,9 +61,9 @@ interface DocsExecutorSchema {
61
61
  * The path to the publish directory for the build artifacts
62
62
  *
63
63
  *
64
- * @format path
64
+ * @oneOf [object Object],[object Object]
65
65
  */
66
- publishPath?: string;
66
+ publishPath?: any;
67
67
  /**
68
68
  * Sourcemap
69
69
  *
@@ -61,9 +61,9 @@ interface DocsExecutorSchema {
61
61
  * The path to the publish directory for the build artifacts
62
62
  *
63
63
  *
64
- * @format path
64
+ * @oneOf [object Object],[object Object]
65
65
  */
66
- publishPath?: string;
66
+ publishPath?: any;
67
67
  /**
68
68
  * Sourcemap
69
69
  *
@@ -62,9 +62,9 @@ export interface DocsExecutorSchema {
62
62
  * The path to the publish directory for the build artifacts
63
63
  *
64
64
  *
65
- * @format path
65
+ * @oneOf [object Object],[object Object]
66
66
  */
67
- publishPath?: string,
67
+ publishPath?: any,
68
68
 
69
69
  /**
70
70
  * Sourcemap
@@ -47,10 +47,22 @@
47
47
  },
48
48
  "publishPath": {
49
49
  "title": "Publish Path",
50
- "type": "string",
51
- "format": "path",
52
50
  "description": "The path to the publish directory for the build artifacts",
53
- "id": "#publishPath"
51
+ "oneOf": [
52
+ {
53
+ "type": "string",
54
+ "format": "path"
55
+ },
56
+ {
57
+ "type": "boolean",
58
+ "enum": [
59
+ false
60
+ ]
61
+ }
62
+ ],
63
+ "id": "#publishPath",
64
+ "type": "any",
65
+ "default": {}
54
66
  },
55
67
  "sourceMap": {
56
68
  "title": "Sourcemap",
@@ -167,6 +179,7 @@
167
179
  "config": "{projectRoot}/powerlines.config.ts",
168
180
  "configFile": "{projectRoot}/powerlines.config.ts",
169
181
  "tsconfig": "{projectRoot}/tsconfig.json",
182
+ "publishPath": {},
170
183
  "format": [
171
184
  "cjs",
172
185
  "esm"
@@ -61,9 +61,9 @@ interface LintExecutorSchema {
61
61
  * The path to the publish directory for the build artifacts
62
62
  *
63
63
  *
64
- * @format path
64
+ * @oneOf [object Object],[object Object]
65
65
  */
66
- publishPath?: string;
66
+ publishPath?: any;
67
67
  /**
68
68
  * Sourcemap
69
69
  *
@@ -61,9 +61,9 @@ interface LintExecutorSchema {
61
61
  * The path to the publish directory for the build artifacts
62
62
  *
63
63
  *
64
- * @format path
64
+ * @oneOf [object Object],[object Object]
65
65
  */
66
- publishPath?: string;
66
+ publishPath?: any;
67
67
  /**
68
68
  * Sourcemap
69
69
  *
@@ -62,9 +62,9 @@ export interface LintExecutorSchema {
62
62
  * The path to the publish directory for the build artifacts
63
63
  *
64
64
  *
65
- * @format path
65
+ * @oneOf [object Object],[object Object]
66
66
  */
67
- publishPath?: string,
67
+ publishPath?: any,
68
68
 
69
69
  /**
70
70
  * Sourcemap
@@ -47,10 +47,22 @@
47
47
  },
48
48
  "publishPath": {
49
49
  "title": "Publish Path",
50
- "type": "string",
51
- "format": "path",
52
50
  "description": "The path to the publish directory for the build artifacts",
53
- "id": "#publishPath"
51
+ "oneOf": [
52
+ {
53
+ "type": "string",
54
+ "format": "path"
55
+ },
56
+ {
57
+ "type": "boolean",
58
+ "enum": [
59
+ false
60
+ ]
61
+ }
62
+ ],
63
+ "id": "#publishPath",
64
+ "type": "any",
65
+ "default": {}
54
66
  },
55
67
  "sourceMap": {
56
68
  "title": "Sourcemap",
@@ -167,6 +179,7 @@
167
179
  "config": "{projectRoot}/powerlines.config.ts",
168
180
  "configFile": "{projectRoot}/powerlines.config.ts",
169
181
  "tsconfig": "{projectRoot}/tsconfig.json",
182
+ "publishPath": {},
170
183
  "format": [
171
184
  "cjs",
172
185
  "esm"
@@ -61,9 +61,9 @@ interface PrepareExecutorSchema {
61
61
  * The path to the publish directory for the build artifacts
62
62
  *
63
63
  *
64
- * @format path
64
+ * @oneOf [object Object],[object Object]
65
65
  */
66
- publishPath?: string;
66
+ publishPath?: any;
67
67
  /**
68
68
  * Sourcemap
69
69
  *
@@ -61,9 +61,9 @@ interface PrepareExecutorSchema {
61
61
  * The path to the publish directory for the build artifacts
62
62
  *
63
63
  *
64
- * @format path
64
+ * @oneOf [object Object],[object Object]
65
65
  */
66
- publishPath?: string;
66
+ publishPath?: any;
67
67
  /**
68
68
  * Sourcemap
69
69
  *
@@ -62,9 +62,9 @@ export interface PrepareExecutorSchema {
62
62
  * The path to the publish directory for the build artifacts
63
63
  *
64
64
  *
65
- * @format path
65
+ * @oneOf [object Object],[object Object]
66
66
  */
67
- publishPath?: string,
67
+ publishPath?: any,
68
68
 
69
69
  /**
70
70
  * Sourcemap
@@ -47,10 +47,22 @@
47
47
  },
48
48
  "publishPath": {
49
49
  "title": "Publish Path",
50
- "type": "string",
51
- "format": "path",
52
50
  "description": "The path to the publish directory for the build artifacts",
53
- "id": "#publishPath"
51
+ "oneOf": [
52
+ {
53
+ "type": "string",
54
+ "format": "path"
55
+ },
56
+ {
57
+ "type": "boolean",
58
+ "enum": [
59
+ false
60
+ ]
61
+ }
62
+ ],
63
+ "id": "#publishPath",
64
+ "type": "any",
65
+ "default": {}
54
66
  },
55
67
  "sourceMap": {
56
68
  "title": "Sourcemap",
@@ -167,6 +179,7 @@
167
179
  "config": "{projectRoot}/powerlines.config.ts",
168
180
  "configFile": "{projectRoot}/powerlines.config.ts",
169
181
  "tsconfig": "{projectRoot}/tsconfig.json",
182
+ "publishPath": {},
170
183
  "format": [
171
184
  "cjs",
172
185
  "esm"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/nx",
3
- "version": "0.11.289",
3
+ "version": "0.11.291",
4
4
  "private": false,
5
5
  "type": "commonjs",
6
6
  "description": "A Nx plugin to support Powerlines development in Nx monorepos.",
@@ -173,7 +173,7 @@
173
173
  "module": "./dist/src/index.mjs",
174
174
  "typings": "./dist/src/index.d.ts",
175
175
  "dependencies": {
176
- "@nx/devkit": "^22.5.4",
176
+ "@nx/devkit": "^22.6.0",
177
177
  "@storm-software/build-tools": "^0.158.120",
178
178
  "@storm-software/config": "^1.135.40",
179
179
  "@storm-software/config-tools": "^1.189.39",
@@ -196,7 +196,7 @@
196
196
  "eslint-flat-config-utils": "^2.1.4",
197
197
  "jsonc-eslint-parser": "^2.4.2",
198
198
  "nx": "22.5.2",
199
- "powerlines": "^0.42.2",
199
+ "powerlines": "^0.42.4",
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": "d00a8306c2e4bc7b8fd853b0f935b5ef5f32d845"
210
+ "gitHead": "c3243c1ec0fbacb4afd4bd3db20432f443334076"
211
211
  }