@powerlines/nx 0.11.283 → 0.11.286

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 (45) hide show
  1. package/dist/src/base/base-executor.js +5 -6
  2. package/dist/src/base/base-executor.mjs +5 -6
  3. package/dist/src/base/base-executor.mjs.map +1 -1
  4. package/dist/src/base/base-executor.schema.d.mts +20 -1
  5. package/dist/src/base/base-executor.schema.d.mts.map +1 -1
  6. package/dist/src/base/base-executor.schema.d.ts +20 -1
  7. package/dist/src/base/base-executor.schema.d.ts.map +1 -1
  8. package/dist/src/base/base-executor.schema.json +17 -1
  9. package/dist/src/base/base-executor.untyped.js +16 -1
  10. package/dist/src/base/base-executor.untyped.mjs +16 -1
  11. package/dist/src/base/base-executor.untyped.mjs.map +1 -1
  12. package/dist/src/executors/build/executor.d.mts +20 -1
  13. package/dist/src/executors/build/executor.d.mts.map +1 -1
  14. package/dist/src/executors/build/executor.d.ts +20 -1
  15. package/dist/src/executors/build/executor.d.ts.map +1 -1
  16. package/dist/src/executors/build/schema.d.ts +22 -1
  17. package/dist/src/executors/build/schema.json +17 -1
  18. package/dist/src/executors/clean/executor.d.mts +20 -1
  19. package/dist/src/executors/clean/executor.d.mts.map +1 -1
  20. package/dist/src/executors/clean/executor.d.ts +20 -1
  21. package/dist/src/executors/clean/executor.d.ts.map +1 -1
  22. package/dist/src/executors/clean/schema.d.ts +22 -1
  23. package/dist/src/executors/clean/schema.json +17 -1
  24. package/dist/src/executors/docs/executor.d.mts +20 -1
  25. package/dist/src/executors/docs/executor.d.mts.map +1 -1
  26. package/dist/src/executors/docs/executor.d.ts +20 -1
  27. package/dist/src/executors/docs/executor.d.ts.map +1 -1
  28. package/dist/src/executors/docs/schema.d.ts +22 -1
  29. package/dist/src/executors/docs/schema.json +17 -1
  30. package/dist/src/executors/lint/executor.d.mts +20 -1
  31. package/dist/src/executors/lint/executor.d.mts.map +1 -1
  32. package/dist/src/executors/lint/executor.d.ts +20 -1
  33. package/dist/src/executors/lint/executor.d.ts.map +1 -1
  34. package/dist/src/executors/lint/schema.d.ts +22 -1
  35. package/dist/src/executors/lint/schema.json +17 -1
  36. package/dist/src/executors/prepare/executor.d.mts +20 -1
  37. package/dist/src/executors/prepare/executor.d.mts.map +1 -1
  38. package/dist/src/executors/prepare/executor.d.ts +20 -1
  39. package/dist/src/executors/prepare/executor.d.ts.map +1 -1
  40. package/dist/src/executors/prepare/schema.d.ts +22 -1
  41. package/dist/src/executors/prepare/schema.json +17 -1
  42. package/dist/src/helpers/plugin-utilities.js +20 -26
  43. package/dist/src/helpers/plugin-utilities.mjs +20 -26
  44. package/dist/src/helpers/plugin-utilities.mjs.map +1 -1
  45. package/package.json +16 -16
@@ -4,11 +4,19 @@
4
4
  "description": "A type definition for the Powerlines - Clean executor schema",
5
5
  "required": [],
6
6
  "properties": {
7
+ "config": {
8
+ "title": "Powerlines Configuration File",
9
+ "type": "string",
10
+ "format": "path",
11
+ "description": "The path to the Powerlines configuration file. Alias for `configFile`.",
12
+ "id": "#config",
13
+ "default": "{projectRoot}/powerlines.config.ts"
14
+ },
7
15
  "configFile": {
8
16
  "title": "Powerlines Configuration File",
9
17
  "type": "string",
10
18
  "format": "path",
11
- "description": "The path to the Powerlines configuration file",
19
+ "description": "The path to the Powerlines configuration file. Alias for `config`.",
12
20
  "id": "#configFile",
13
21
  "default": "{projectRoot}/powerlines.config.ts"
14
22
  },
@@ -37,6 +45,13 @@
37
45
  "description": "The path to the output directory for the build artifacts",
38
46
  "id": "#outputPath"
39
47
  },
48
+ "publishPath": {
49
+ "title": "Publish Path",
50
+ "type": "string",
51
+ "format": "path",
52
+ "description": "The path to the publish directory for the build artifacts",
53
+ "id": "#publishPath"
54
+ },
40
55
  "sourceMap": {
41
56
  "title": "Sourcemap",
42
57
  "type": "boolean",
@@ -137,6 +152,7 @@
137
152
  },
138
153
  "type": "object",
139
154
  "default": {
155
+ "config": "{projectRoot}/powerlines.config.ts",
140
156
  "configFile": "{projectRoot}/powerlines.config.ts",
141
157
  "tsconfig": "{projectRoot}/tsconfig.json",
142
158
  "format": [
@@ -10,7 +10,17 @@ interface DocsExecutorSchema {
10
10
  /**
11
11
  * Powerlines Configuration File
12
12
  *
13
- * The path to the Powerlines configuration file
13
+ * The path to the Powerlines configuration file. Alias for `configFile`.
14
+ *
15
+ * @default "{projectRoot}/powerlines.config.ts"
16
+ *
17
+ * @format path
18
+ */
19
+ config?: string;
20
+ /**
21
+ * Powerlines Configuration File
22
+ *
23
+ * The path to the Powerlines configuration file. Alias for `config`.
14
24
  *
15
25
  * @default "{projectRoot}/powerlines.config.ts"
16
26
  *
@@ -45,6 +55,15 @@ interface DocsExecutorSchema {
45
55
  * @format path
46
56
  */
47
57
  outputPath?: string;
58
+ /**
59
+ * Publish Path
60
+ *
61
+ * The path to the publish directory for the build artifacts
62
+ *
63
+ *
64
+ * @format path
65
+ */
66
+ publishPath?: string;
48
67
  /**
49
68
  * Sourcemap
50
69
  *
@@ -1 +1 @@
1
- {"version":3,"file":"executor.d.mts","names":["DocsExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/docs/schema.d.ts","../../../../src/executors/docs/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQH,KAAAA;;;;;;;;;;EAWRI,QAAAA;EA0GS;;;;ACjHV;;;;EDiBCC,UAAAA;;;;;;;EAQAC,SAAAA;;;;;;AChBA;;EDyBAC,MAAAA,GAASP,KAAAA;ECvBwC;;;;;;;;;EDkCjDQ,QAAAA;;;;;;;EAQAC,QAAAA,GAAWT,KAAAA;;;;;;;EAQXU,UAAAA,GAAaV,KAAAA;;;;;;;EAQbW,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASb,MAAAA;;;;;;;EAQTc,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCjHqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
1
+ {"version":3,"file":"executor.d.mts","names":["DocsExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/docs/schema.d.ts","../../../../src/executors/docs/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACPT;;;EDkBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACnBA;;;;ED6BAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCtIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
@@ -10,7 +10,17 @@ interface DocsExecutorSchema {
10
10
  /**
11
11
  * Powerlines Configuration File
12
12
  *
13
- * The path to the Powerlines configuration file
13
+ * The path to the Powerlines configuration file. Alias for `configFile`.
14
+ *
15
+ * @default "{projectRoot}/powerlines.config.ts"
16
+ *
17
+ * @format path
18
+ */
19
+ config?: string;
20
+ /**
21
+ * Powerlines Configuration File
22
+ *
23
+ * The path to the Powerlines configuration file. Alias for `config`.
14
24
  *
15
25
  * @default "{projectRoot}/powerlines.config.ts"
16
26
  *
@@ -45,6 +55,15 @@ interface DocsExecutorSchema {
45
55
  * @format path
46
56
  */
47
57
  outputPath?: string;
58
+ /**
59
+ * Publish Path
60
+ *
61
+ * The path to the publish directory for the build artifacts
62
+ *
63
+ *
64
+ * @format path
65
+ */
66
+ publishPath?: string;
48
67
  /**
49
68
  * Sourcemap
50
69
  *
@@ -1 +1 @@
1
- {"version":3,"file":"executor.d.ts","names":["DocsExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/docs/schema.d.ts","../../../../src/executors/docs/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQH,KAAAA;;;;;;;;;;EAWRI,QAAAA;EA0GS;;;;ACjHV;;;;EDiBCC,UAAAA;;;;;;;EAQAC,SAAAA;;;;;;AChBA;;EDyBAC,MAAAA,GAASP,KAAAA;ECvBwC;;;;;;;;;EDkCjDQ,QAAAA;;;;;;;EAQAC,QAAAA,GAAWT,KAAAA;;;;;;;EAQXU,UAAAA,GAAaV,KAAAA;;;;;;;EAQbW,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASb,MAAAA;;;;;;;EAQTc,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCjHqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
1
+ {"version":3,"file":"executor.d.ts","names":["DocsExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/docs/schema.d.ts","../../../../src/executors/docs/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACPT;;;EDkBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACnBA;;;;ED6BAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCtIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
@@ -6,7 +6,18 @@ export interface DocsExecutorSchema {
6
6
  /**
7
7
  * Powerlines Configuration File
8
8
  *
9
- * The path to the Powerlines configuration file
9
+ * The path to the Powerlines configuration file. Alias for `configFile`.
10
+ *
11
+ * @default "{projectRoot}/powerlines.config.ts"
12
+ *
13
+ * @format path
14
+ */
15
+ config?: string,
16
+
17
+ /**
18
+ * Powerlines Configuration File
19
+ *
20
+ * The path to the Powerlines configuration file. Alias for `config`.
10
21
  *
11
22
  * @default "{projectRoot}/powerlines.config.ts"
12
23
  *
@@ -45,6 +56,16 @@ export interface DocsExecutorSchema {
45
56
  */
46
57
  outputPath?: string,
47
58
 
59
+ /**
60
+ * Publish Path
61
+ *
62
+ * The path to the publish directory for the build artifacts
63
+ *
64
+ *
65
+ * @format path
66
+ */
67
+ publishPath?: string,
68
+
48
69
  /**
49
70
  * Sourcemap
50
71
  *
@@ -4,11 +4,19 @@
4
4
  "description": "A type definition for the Powerlines - Docs executor schema",
5
5
  "required": [],
6
6
  "properties": {
7
+ "config": {
8
+ "title": "Powerlines Configuration File",
9
+ "type": "string",
10
+ "format": "path",
11
+ "description": "The path to the Powerlines configuration file. Alias for `configFile`.",
12
+ "id": "#config",
13
+ "default": "{projectRoot}/powerlines.config.ts"
14
+ },
7
15
  "configFile": {
8
16
  "title": "Powerlines Configuration File",
9
17
  "type": "string",
10
18
  "format": "path",
11
- "description": "The path to the Powerlines configuration file",
19
+ "description": "The path to the Powerlines configuration file. Alias for `config`.",
12
20
  "id": "#configFile",
13
21
  "default": "{projectRoot}/powerlines.config.ts"
14
22
  },
@@ -37,6 +45,13 @@
37
45
  "description": "The path to the output directory for the build artifacts",
38
46
  "id": "#outputPath"
39
47
  },
48
+ "publishPath": {
49
+ "title": "Publish Path",
50
+ "type": "string",
51
+ "format": "path",
52
+ "description": "The path to the publish directory for the build artifacts",
53
+ "id": "#publishPath"
54
+ },
40
55
  "sourceMap": {
41
56
  "title": "Sourcemap",
42
57
  "type": "boolean",
@@ -149,6 +164,7 @@
149
164
  },
150
165
  "type": "object",
151
166
  "default": {
167
+ "config": "{projectRoot}/powerlines.config.ts",
152
168
  "configFile": "{projectRoot}/powerlines.config.ts",
153
169
  "tsconfig": "{projectRoot}/tsconfig.json",
154
170
  "format": [
@@ -10,7 +10,17 @@ interface LintExecutorSchema {
10
10
  /**
11
11
  * Powerlines Configuration File
12
12
  *
13
- * The path to the Powerlines configuration file
13
+ * The path to the Powerlines configuration file. Alias for `configFile`.
14
+ *
15
+ * @default "{projectRoot}/powerlines.config.ts"
16
+ *
17
+ * @format path
18
+ */
19
+ config?: string;
20
+ /**
21
+ * Powerlines Configuration File
22
+ *
23
+ * The path to the Powerlines configuration file. Alias for `config`.
14
24
  *
15
25
  * @default "{projectRoot}/powerlines.config.ts"
16
26
  *
@@ -45,6 +55,15 @@ interface LintExecutorSchema {
45
55
  * @format path
46
56
  */
47
57
  outputPath?: string;
58
+ /**
59
+ * Publish Path
60
+ *
61
+ * The path to the publish directory for the build artifacts
62
+ *
63
+ *
64
+ * @format path
65
+ */
66
+ publishPath?: string;
48
67
  /**
49
68
  * Sourcemap
50
69
  *
@@ -1 +1 @@
1
- {"version":3,"file":"executor.d.mts","names":["LintExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/lint/schema.d.ts","../../../../src/executors/lint/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQH,KAAAA;;;;;;;;;;EAWRI,QAAAA;EA0GS;;;;ACjHV;;;;EDiBCC,UAAAA;;;;;;;EAQAC,SAAAA;;;;;;AChBA;;EDyBAC,MAAAA,GAASP,KAAAA;ECvBwC;;;;;;;;;EDkCjDQ,QAAAA;;;;;;;EAQAC,QAAAA,GAAWT,KAAAA;;;;;;;EAQXU,UAAAA,GAAaV,KAAAA;;;;;;;EAQbW,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASb,MAAAA;;;;;;;EAQTc,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCjHqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
1
+ {"version":3,"file":"executor.d.mts","names":["LintExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/lint/schema.d.ts","../../../../src/executors/lint/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACPT;;;EDkBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACnBA;;;;ED6BAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCtIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
@@ -10,7 +10,17 @@ interface LintExecutorSchema {
10
10
  /**
11
11
  * Powerlines Configuration File
12
12
  *
13
- * The path to the Powerlines configuration file
13
+ * The path to the Powerlines configuration file. Alias for `configFile`.
14
+ *
15
+ * @default "{projectRoot}/powerlines.config.ts"
16
+ *
17
+ * @format path
18
+ */
19
+ config?: string;
20
+ /**
21
+ * Powerlines Configuration File
22
+ *
23
+ * The path to the Powerlines configuration file. Alias for `config`.
14
24
  *
15
25
  * @default "{projectRoot}/powerlines.config.ts"
16
26
  *
@@ -45,6 +55,15 @@ interface LintExecutorSchema {
45
55
  * @format path
46
56
  */
47
57
  outputPath?: string;
58
+ /**
59
+ * Publish Path
60
+ *
61
+ * The path to the publish directory for the build artifacts
62
+ *
63
+ *
64
+ * @format path
65
+ */
66
+ publishPath?: string;
48
67
  /**
49
68
  * Sourcemap
50
69
  *
@@ -1 +1 @@
1
- {"version":3,"file":"executor.d.ts","names":["LintExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/lint/schema.d.ts","../../../../src/executors/lint/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQH,KAAAA;;;;;;;;;;EAWRI,QAAAA;EA0GS;;;;ACjHV;;;;EDiBCC,UAAAA;;;;;;;EAQAC,SAAAA;;;;;;AChBA;;EDyBAC,MAAAA,GAASP,KAAAA;ECvBwC;;;;;;;;;EDkCjDQ,QAAAA;;;;;;;EAQAC,QAAAA,GAAWT,KAAAA;;;;;;;EAQXU,UAAAA,GAAaV,KAAAA;;;;;;;EAQbW,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASb,MAAAA;;;;;;;EAQTc,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCjHqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
1
+ {"version":3,"file":"executor.d.ts","names":["LintExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/lint/schema.d.ts","../../../../src/executors/lint/executor.ts"],"mappings":";;;;;;;;UAIiBA,kBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACPT;;;EDkBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACnBA;;;;ED6BAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCtIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,SAAkC,kBAAA,GAC3C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAQL,QAAA,EAAU,eAAA,CAAgB,kBAAA"}
@@ -6,7 +6,18 @@ export interface LintExecutorSchema {
6
6
  /**
7
7
  * Powerlines Configuration File
8
8
  *
9
- * The path to the Powerlines configuration file
9
+ * The path to the Powerlines configuration file. Alias for `configFile`.
10
+ *
11
+ * @default "{projectRoot}/powerlines.config.ts"
12
+ *
13
+ * @format path
14
+ */
15
+ config?: string,
16
+
17
+ /**
18
+ * Powerlines Configuration File
19
+ *
20
+ * The path to the Powerlines configuration file. Alias for `config`.
10
21
  *
11
22
  * @default "{projectRoot}/powerlines.config.ts"
12
23
  *
@@ -45,6 +56,16 @@ export interface LintExecutorSchema {
45
56
  */
46
57
  outputPath?: string,
47
58
 
59
+ /**
60
+ * Publish Path
61
+ *
62
+ * The path to the publish directory for the build artifacts
63
+ *
64
+ *
65
+ * @format path
66
+ */
67
+ publishPath?: string,
68
+
48
69
  /**
49
70
  * Sourcemap
50
71
  *
@@ -4,11 +4,19 @@
4
4
  "description": "A type definition for the Powerlines - Lint executor schema",
5
5
  "required": [],
6
6
  "properties": {
7
+ "config": {
8
+ "title": "Powerlines Configuration File",
9
+ "type": "string",
10
+ "format": "path",
11
+ "description": "The path to the Powerlines configuration file. Alias for `configFile`.",
12
+ "id": "#config",
13
+ "default": "{projectRoot}/powerlines.config.ts"
14
+ },
7
15
  "configFile": {
8
16
  "title": "Powerlines Configuration File",
9
17
  "type": "string",
10
18
  "format": "path",
11
- "description": "The path to the Powerlines configuration file",
19
+ "description": "The path to the Powerlines configuration file. Alias for `config`.",
12
20
  "id": "#configFile",
13
21
  "default": "{projectRoot}/powerlines.config.ts"
14
22
  },
@@ -37,6 +45,13 @@
37
45
  "description": "The path to the output directory for the build artifacts",
38
46
  "id": "#outputPath"
39
47
  },
48
+ "publishPath": {
49
+ "title": "Publish Path",
50
+ "type": "string",
51
+ "format": "path",
52
+ "description": "The path to the publish directory for the build artifacts",
53
+ "id": "#publishPath"
54
+ },
40
55
  "sourceMap": {
41
56
  "title": "Sourcemap",
42
57
  "type": "boolean",
@@ -149,6 +164,7 @@
149
164
  },
150
165
  "type": "object",
151
166
  "default": {
167
+ "config": "{projectRoot}/powerlines.config.ts",
152
168
  "configFile": "{projectRoot}/powerlines.config.ts",
153
169
  "tsconfig": "{projectRoot}/tsconfig.json",
154
170
  "format": [
@@ -10,7 +10,17 @@ interface PrepareExecutorSchema {
10
10
  /**
11
11
  * Powerlines Configuration File
12
12
  *
13
- * The path to the Powerlines configuration file
13
+ * The path to the Powerlines configuration file. Alias for `configFile`.
14
+ *
15
+ * @default "{projectRoot}/powerlines.config.ts"
16
+ *
17
+ * @format path
18
+ */
19
+ config?: string;
20
+ /**
21
+ * Powerlines Configuration File
22
+ *
23
+ * The path to the Powerlines configuration file. Alias for `config`.
14
24
  *
15
25
  * @default "{projectRoot}/powerlines.config.ts"
16
26
  *
@@ -45,6 +55,15 @@ interface PrepareExecutorSchema {
45
55
  * @format path
46
56
  */
47
57
  outputPath?: string;
58
+ /**
59
+ * Publish Path
60
+ *
61
+ * The path to the publish directory for the build artifacts
62
+ *
63
+ *
64
+ * @format path
65
+ */
66
+ publishPath?: string;
48
67
  /**
49
68
  * Sourcemap
50
69
  *
@@ -1 +1 @@
1
- {"version":3,"file":"executor.d.mts","names":["PrepareExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/prepare/schema.d.ts","../../../../src/executors/prepare/executor.ts"],"mappings":";;;;;;;;UAIiBA,qBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQH,KAAAA;;;;;;;;;;EAWRI,QAAAA;EA0GS;;;;AChHV;;;;EDgBCC,UAAAA;;;;;;;EAQAC,SAAAA;;;;;;ACNA;;EDeAC,MAAAA,GAASP,KAAAA;ECb2C;;;;;;;;;EDwBpDQ,QAAAA;;;;;;;EAQAC,QAAAA,GAAWT,KAAAA;;;;;;;EAQXU,UAAAA,GAAaV,KAAAA;;;;;;;EAQbW,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASb,MAAAA;;;;;;;EAQTc,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBChHqB,UAAA,CACpB,OAAA,EAAS,yBAAA,YAAqC,qBAAA,GAC9C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAiBL,QAAA,EAAU,eAAA,CAAgB,qBAAA"}
1
+ {"version":3,"file":"executor.d.mts","names":["PrepareExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/prepare/schema.d.ts","../../../../src/executors/prepare/executor.ts"],"mappings":";;;;;;;;UAIiBA,qBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACNT;;;EDiBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACTA;;;;EDmBAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCrIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,YAAqC,qBAAA,GAC9C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAiBL,QAAA,EAAU,eAAA,CAAgB,qBAAA"}
@@ -10,7 +10,17 @@ interface PrepareExecutorSchema {
10
10
  /**
11
11
  * Powerlines Configuration File
12
12
  *
13
- * The path to the Powerlines configuration file
13
+ * The path to the Powerlines configuration file. Alias for `configFile`.
14
+ *
15
+ * @default "{projectRoot}/powerlines.config.ts"
16
+ *
17
+ * @format path
18
+ */
19
+ config?: string;
20
+ /**
21
+ * Powerlines Configuration File
22
+ *
23
+ * The path to the Powerlines configuration file. Alias for `config`.
14
24
  *
15
25
  * @default "{projectRoot}/powerlines.config.ts"
16
26
  *
@@ -45,6 +55,15 @@ interface PrepareExecutorSchema {
45
55
  * @format path
46
56
  */
47
57
  outputPath?: string;
58
+ /**
59
+ * Publish Path
60
+ *
61
+ * The path to the publish directory for the build artifacts
62
+ *
63
+ *
64
+ * @format path
65
+ */
66
+ publishPath?: string;
48
67
  /**
49
68
  * Sourcemap
50
69
  *
@@ -1 +1 @@
1
- {"version":3,"file":"executor.d.ts","names":["PrepareExecutorSchema","Array","Record","configFile","input","tsconfig","outputPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/prepare/schema.d.ts","../../../../src/executors/prepare/executor.ts"],"mappings":";;;;;;;;UAIiBA,qBAAAA;;AAAjB;;;;;;;;EAUCG,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQH,KAAAA;;;;;;;;;;EAWRI,QAAAA;EA0GS;;;;AChHV;;;;EDgBCC,UAAAA;;;;;;;EAQAC,SAAAA;;;;;;ACNA;;EDeAC,MAAAA,GAASP,KAAAA;ECb2C;;;;;;;;;EDwBpDQ,QAAAA;;;;;;;EAQAC,QAAAA,GAAWT,KAAAA;;;;;;;EAQXU,UAAAA,GAAaV,KAAAA;;;;;;;EAQbW,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASb,MAAAA;;;;;;;EAQTc,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBChHqB,UAAA,CACpB,OAAA,EAAS,yBAAA,YAAqC,qBAAA,GAC9C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAiBL,QAAA,EAAU,eAAA,CAAgB,qBAAA"}
1
+ {"version":3,"file":"executor.d.ts","names":["PrepareExecutorSchema","Array","Record","config","configFile","input","tsconfig","outputPath","publishPath","sourceMap","format","platform","external","noExternal","skipNodeModulesBundle","mode","logLevel","define","autoInstall","skipCache"],"sources":["../../../../src/executors/prepare/schema.d.ts","../../../../src/executors/prepare/executor.ts"],"mappings":";;;;;;;;UAIiBA,qBAAAA;;AAAjB;;;;;;;;EAUCG,MAAAA;;;;;;;;;;EAWAC,UAAAA;;;;;;;;;EAUAC,KAAAA,GAAQJ,KAAAA;;;;;;;ACNT;;;EDiBCK,QAAAA;;;;;;;;;EAUAC,UAAAA;;;;;ACTA;;;;EDmBAC,WAAAA;;;;;;;EAQAC,SAAAA;;;;;;;;EASAC,MAAAA,GAAST,KAAAA;;;;;;;;;;EAWTU,QAAAA;;;;;;;EAQAC,QAAAA,GAAWX,KAAAA;;;;;;;EAQXY,UAAAA,GAAaZ,KAAAA;;;;;;;EAQba,qBAAAA;;;;;;;;;EAUAC,IAAAA;;;;;;;;;EAUAC,QAAAA;;;;;;;EAQAC,MAAAA,GAASf,MAAAA;;;;;;;EAQTgB,WAAAA;;;;;;;EAQAC,SAAAA;AAAAA;;;iBCrIqB,UAAA,CACpB,OAAA,EAAS,yBAAA,YAAqC,qBAAA,GAC9C,GAAA,EAAK,aAAA,GACJ,OAAA,CAAQ,kBAAA;AAAA,cAiBL,QAAA,EAAU,eAAA,CAAgB,qBAAA"}
@@ -6,7 +6,18 @@ export interface PrepareExecutorSchema {
6
6
  /**
7
7
  * Powerlines Configuration File
8
8
  *
9
- * The path to the Powerlines configuration file
9
+ * The path to the Powerlines configuration file. Alias for `configFile`.
10
+ *
11
+ * @default "{projectRoot}/powerlines.config.ts"
12
+ *
13
+ * @format path
14
+ */
15
+ config?: string,
16
+
17
+ /**
18
+ * Powerlines Configuration File
19
+ *
20
+ * The path to the Powerlines configuration file. Alias for `config`.
10
21
  *
11
22
  * @default "{projectRoot}/powerlines.config.ts"
12
23
  *
@@ -45,6 +56,16 @@ export interface PrepareExecutorSchema {
45
56
  */
46
57
  outputPath?: string,
47
58
 
59
+ /**
60
+ * Publish Path
61
+ *
62
+ * The path to the publish directory for the build artifacts
63
+ *
64
+ *
65
+ * @format path
66
+ */
67
+ publishPath?: string,
68
+
48
69
  /**
49
70
  * Sourcemap
50
71
  *
@@ -4,11 +4,19 @@
4
4
  "description": "A type definition for the Powerlines - Prepare executor schema",
5
5
  "required": [],
6
6
  "properties": {
7
+ "config": {
8
+ "title": "Powerlines Configuration File",
9
+ "type": "string",
10
+ "format": "path",
11
+ "description": "The path to the Powerlines configuration file. Alias for `configFile`.",
12
+ "id": "#config",
13
+ "default": "{projectRoot}/powerlines.config.ts"
14
+ },
7
15
  "configFile": {
8
16
  "title": "Powerlines Configuration File",
9
17
  "type": "string",
10
18
  "format": "path",
11
- "description": "The path to the Powerlines configuration file",
19
+ "description": "The path to the Powerlines configuration file. Alias for `config`.",
12
20
  "id": "#configFile",
13
21
  "default": "{projectRoot}/powerlines.config.ts"
14
22
  },
@@ -37,6 +45,13 @@
37
45
  "description": "The path to the output directory for the build artifacts",
38
46
  "id": "#outputPath"
39
47
  },
48
+ "publishPath": {
49
+ "title": "Publish Path",
50
+ "type": "string",
51
+ "format": "path",
52
+ "description": "The path to the publish directory for the build artifacts",
53
+ "id": "#publishPath"
54
+ },
40
55
  "sourceMap": {
41
56
  "title": "Sourcemap",
42
57
  "type": "boolean",
@@ -149,6 +164,7 @@
149
164
  },
150
165
  "type": "object",
151
166
  "default": {
167
+ "config": "{projectRoot}/powerlines.config.ts",
152
168
  "configFile": "{projectRoot}/powerlines.config.ts",
153
169
  "tsconfig": "{projectRoot}/tsconfig.json",
154
170
  "format": [
@@ -116,9 +116,9 @@ function createNxPlugin(opts) {
116
116
  dependsOn: options?.clean?.dependsOn ?? [`^${options?.clean?.targetName || "clean"}`],
117
117
  defaultConfiguration: options?.clean?.defaultConfiguration || "production",
118
118
  options: {
119
- outputPath: userConfig.output?.outputPath,
120
- projectType: userConfig.projectType || projectConfig.projectType,
121
- autoInstall: userConfig.autoInstall
119
+ projectType: projectConfig.projectType,
120
+ outputPath: `{workspaceRoot}/${projectRoot}/dist`,
121
+ publishPath: `{workspaceRoot}/dist/${projectRoot}`
122
122
  },
123
123
  configurations: {
124
124
  production: { mode: "production" },
@@ -137,10 +137,9 @@ function createNxPlugin(opts) {
137
137
  dependsOn: options?.prepare?.dependsOn ?? [`^${options?.prepare?.targetName || "build"}`, options?.clean !== false && `${options?.clean?.targetName || "clean"}`].filter(Boolean),
138
138
  defaultConfiguration: options?.prepare?.defaultConfiguration || "production",
139
139
  options: {
140
- input: userConfig.input,
141
- projectType: userConfig.projectType || projectConfig.projectType,
142
- autoInstall: userConfig.autoInstall,
143
- skipCache: userConfig.skipCache
140
+ projectType: projectConfig.projectType,
141
+ outputPath: `{workspaceRoot}/${projectRoot}/dist`,
142
+ publishPath: `{workspaceRoot}/dist/${projectRoot}`
144
143
  },
145
144
  configurations: {
146
145
  production: { mode: "production" },
@@ -159,11 +158,9 @@ function createNxPlugin(opts) {
159
158
  dependsOn: options?.build?.dependsOn ?? [`^${options?.build?.targetName || "build"}`, userConfig.skipCache ? void 0 : (0, _stryke_type_checks_is_set_object.isSetObject)(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"].filter(Boolean),
160
159
  defaultConfiguration: options?.build?.defaultConfiguration || "production",
161
160
  options: {
162
- input: userConfig.input,
163
- outputPath: userConfig.output?.outputPath,
164
- projectType: userConfig.projectType || projectConfig.projectType,
165
- autoInstall: userConfig.autoInstall,
166
- skipCache: userConfig.skipCache
161
+ projectType: projectConfig.projectType,
162
+ outputPath: `{workspaceRoot}/${projectRoot}/dist`,
163
+ publishPath: `{workspaceRoot}/dist/${projectRoot}`
167
164
  },
168
165
  configurations: {
169
166
  production: { mode: "production" },
@@ -182,10 +179,9 @@ function createNxPlugin(opts) {
182
179
  dependsOn: options?.lint?.dependsOn ?? [`^${options?.lint?.targetName || "lint"}`, userConfig.skipCache ? void 0 : (0, _stryke_type_checks_is_set_object.isSetObject)(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : "prepare"].filter(Boolean),
183
180
  defaultConfiguration: options?.lint?.defaultConfiguration || "production",
184
181
  options: {
185
- input: userConfig.input,
186
- projectType: userConfig.projectType || projectConfig.projectType,
187
- autoInstall: userConfig.autoInstall,
188
- skipCache: userConfig.skipCache
182
+ projectType: projectConfig.projectType,
183
+ outputPath: `{workspaceRoot}/${projectRoot}/dist`,
184
+ publishPath: `{workspaceRoot}/dist/${projectRoot}`
189
185
  },
190
186
  configurations: {
191
187
  production: { mode: "production" },
@@ -208,10 +204,9 @@ function createNxPlugin(opts) {
208
204
  ].filter(Boolean),
209
205
  defaultConfiguration: options?.docs?.defaultConfiguration || "production",
210
206
  options: {
211
- input: userConfig.input,
212
- projectType: userConfig.projectType || projectConfig.projectType,
213
- autoInstall: userConfig.autoInstall,
214
- skipCache: userConfig.skipCache
207
+ projectType: projectConfig.projectType,
208
+ outputPath: `{workspaceRoot}/${projectRoot}/dist`,
209
+ publishPath: `{workspaceRoot}/dist/${projectRoot}`
215
210
  },
216
211
  configurations: {
217
212
  production: { mode: "production" },
@@ -233,10 +228,9 @@ function createNxPlugin(opts) {
233
228
  ].filter(Boolean),
234
229
  defaultConfiguration: options?.deploy?.defaultConfiguration || "production",
235
230
  options: {
236
- input: userConfig.input,
237
- projectType: userConfig.projectType || projectConfig.projectType,
238
- autoInstall: userConfig.autoInstall,
239
- skipCache: userConfig.skipCache
231
+ projectType: projectConfig.projectType,
232
+ outputPath: `{workspaceRoot}/${projectRoot}/dist`,
233
+ publishPath: `{workspaceRoot}/dist/${projectRoot}`
240
234
  },
241
235
  configurations: {
242
236
  production: { mode: "production" },
@@ -248,11 +242,11 @@ function createNxPlugin(opts) {
248
242
  }
249
243
  };
250
244
  (0, _storm_software_workspace_tools_utils_project_tags.setDefaultProjectTags)(projectConfig, name);
251
- (0, _storm_software_workspace_tools_utils_project_tags.addProjectTag)(projectConfig, framework, userConfig.projectType || projectConfig.projectType || "library", { overwrite: true });
245
+ (0, _storm_software_workspace_tools_utils_project_tags.addProjectTag)(projectConfig, framework, projectConfig.projectType || "library", { overwrite: true });
252
246
  if (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Completed preparing Nx configuration for project in root directory ${projectRoot}.`);
253
247
  return { projects: { [root]: (0, defu.default)(projectConfig, {
254
248
  name: (0, _stryke_string_format_kebab_case.kebabCase)(userConfig.name),
255
- projectType: userConfig.projectType || "library",
249
+ projectType: projectConfig.projectType || "library",
256
250
  root,
257
251
  sourceRoot: (0, _stryke_path_join_paths.joinPaths)(root, "src"),
258
252
  targets