@powerlines/nx 0.10.8 → 0.10.10
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/CHANGELOG.md +22 -0
- package/dist/{chunk-3WPWHDP3.mjs → chunk-72SMJRRS.mjs} +81 -17
- package/dist/{chunk-R4LYPNZD.mjs → chunk-AO7OQ26C.mjs} +1 -1
- package/dist/{chunk-B3UMNKEM.js → chunk-CYH2EFG7.js} +2 -2
- package/dist/{chunk-VP7AMTR6.js → chunk-EOLGFIVC.js} +2 -2
- package/dist/{chunk-6QJOYEGY.js → chunk-L5RBARDS.js} +8 -9
- package/dist/{chunk-WUF54G5K.js → chunk-MCZLD3NY.js} +81 -17
- package/dist/{chunk-4S5RU53T.js → chunk-NXUUFBCT.js} +2 -2
- package/dist/{chunk-T52ZTHWM.mjs → chunk-ODVN2Q6Y.mjs} +1 -1
- package/dist/{chunk-QJEIBIEZ.js → chunk-OUNXRMS7.js} +2 -2
- package/dist/{chunk-GQKX6RIX.mjs → chunk-QWEMU3V4.mjs} +9 -9
- package/dist/{chunk-AX3G6RLK.mjs → chunk-RJP4IZYY.mjs} +1 -1
- package/dist/{chunk-IUHTUUDE.js → chunk-UMVPNWWR.js} +2 -2
- package/dist/{chunk-3TWAKTYR.mjs → chunk-XO3MCKAF.mjs} +1 -1
- package/dist/{chunk-M647TAWI.mjs → chunk-Y4AEEMCT.mjs} +1 -1
- package/dist/executors.js +11 -11
- package/dist/executors.mjs +6 -6
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +13 -17
- package/dist/index.mjs +7 -7
- package/dist/src/base/base-executor.js +2 -2
- package/dist/src/base/base-executor.mjs +1 -1
- package/dist/src/executors/build/executor.js +4 -4
- package/dist/src/executors/build/executor.mjs +2 -2
- package/dist/src/executors/build/schema.d.ts +85 -0
- package/dist/src/executors/build/schema.json +96 -0
- package/dist/src/executors/clean/executor.js +4 -4
- package/dist/src/executors/clean/executor.mjs +2 -2
- package/dist/src/executors/clean/schema.d.ts +75 -0
- package/dist/src/executors/clean/schema.json +77 -0
- package/dist/src/executors/docs/executor.js +4 -4
- package/dist/src/executors/docs/executor.mjs +2 -2
- package/dist/src/executors/docs/schema.d.ts +75 -0
- package/dist/src/executors/docs/schema.json +77 -0
- package/dist/src/executors/lint/executor.js +4 -4
- package/dist/src/executors/lint/executor.mjs +2 -2
- package/dist/src/executors/lint/schema.d.ts +75 -0
- package/dist/src/executors/lint/schema.json +77 -0
- package/dist/src/executors/prepare/executor.js +4 -4
- package/dist/src/executors/prepare/executor.mjs +2 -2
- package/dist/src/executors/prepare/schema.d.ts +75 -0
- package/dist/src/executors/prepare/schema.json +77 -0
- package/dist/src/generators/sync/schema.d.ts +15 -0
- package/dist/src/generators/sync/schema.json +19 -0
- package/dist/src/plugin/index.d.mts +3 -4
- package/dist/src/plugin/index.d.ts +3 -4
- package/dist/src/plugin/index.js +2 -6
- package/dist/src/plugin/index.mjs +1 -1
- package/package.json +10 -10
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
3
|
+
// Do not edit this file directly
|
|
4
|
+
|
|
5
|
+
export interface DocsExecutorSchema {
|
|
6
|
+
/**
|
|
7
|
+
* Output Path
|
|
8
|
+
*
|
|
9
|
+
* The output path for the build
|
|
10
|
+
*
|
|
11
|
+
* @default "dist/{projectRoot}"
|
|
12
|
+
*
|
|
13
|
+
* @format path
|
|
14
|
+
*/
|
|
15
|
+
outputPath?: string,
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* TypeScript Configuration File
|
|
19
|
+
*
|
|
20
|
+
* The path to the tsconfig file
|
|
21
|
+
*
|
|
22
|
+
* @default "{projectRoot}/tsconfig.json"
|
|
23
|
+
*
|
|
24
|
+
* @format path
|
|
25
|
+
*/
|
|
26
|
+
tsconfig?: string,
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Powerlines Configuration File
|
|
30
|
+
*
|
|
31
|
+
* The path to the Powerlines configuration file
|
|
32
|
+
*
|
|
33
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
34
|
+
*
|
|
35
|
+
* @format path
|
|
36
|
+
*/
|
|
37
|
+
configFile?: string,
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Mode
|
|
41
|
+
*
|
|
42
|
+
* The build mode
|
|
43
|
+
*
|
|
44
|
+
*
|
|
45
|
+
* @enum development,test,production
|
|
46
|
+
*/
|
|
47
|
+
mode?: string,
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Skip Installs
|
|
51
|
+
*
|
|
52
|
+
* Skip installing dependencies before building
|
|
53
|
+
*
|
|
54
|
+
*/
|
|
55
|
+
skipInstalls?: boolean,
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Skip Cache
|
|
59
|
+
*
|
|
60
|
+
* Skip the cache when building
|
|
61
|
+
*
|
|
62
|
+
*/
|
|
63
|
+
skipCache?: boolean,
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Log Level
|
|
67
|
+
*
|
|
68
|
+
* The log level to use for the build process
|
|
69
|
+
*
|
|
70
|
+
*
|
|
71
|
+
* @enum fatal,error,warn,success,info,debug,trace,silent
|
|
72
|
+
*/
|
|
73
|
+
logLevel?: string,
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "#",
|
|
3
|
+
"title": "Docs Executor",
|
|
4
|
+
"description": "A type definition for the Powerlines - Docs executor schema",
|
|
5
|
+
"required": [],
|
|
6
|
+
"properties": {
|
|
7
|
+
"outputPath": {
|
|
8
|
+
"title": "Output Path",
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "path",
|
|
11
|
+
"description": "The output path for the build",
|
|
12
|
+
"id": "#outputPath",
|
|
13
|
+
"default": "dist/{projectRoot}"
|
|
14
|
+
},
|
|
15
|
+
"tsconfig": {
|
|
16
|
+
"title": "TypeScript Configuration File",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"format": "path",
|
|
19
|
+
"description": "The path to the tsconfig file",
|
|
20
|
+
"id": "#tsconfig",
|
|
21
|
+
"default": "{projectRoot}/tsconfig.json"
|
|
22
|
+
},
|
|
23
|
+
"configFile": {
|
|
24
|
+
"title": "Powerlines Configuration File",
|
|
25
|
+
"type": "string",
|
|
26
|
+
"format": "path",
|
|
27
|
+
"description": "The path to the Powerlines configuration file",
|
|
28
|
+
"id": "#configFile",
|
|
29
|
+
"default": "{projectRoot}/powerlines.config.ts"
|
|
30
|
+
},
|
|
31
|
+
"mode": {
|
|
32
|
+
"title": "Mode",
|
|
33
|
+
"type": "string",
|
|
34
|
+
"description": "The build mode",
|
|
35
|
+
"enum": [
|
|
36
|
+
"development",
|
|
37
|
+
"test",
|
|
38
|
+
"production"
|
|
39
|
+
],
|
|
40
|
+
"id": "#mode"
|
|
41
|
+
},
|
|
42
|
+
"skipInstalls": {
|
|
43
|
+
"title": "Skip Installs",
|
|
44
|
+
"type": "boolean",
|
|
45
|
+
"description": "Skip installing dependencies before building",
|
|
46
|
+
"id": "#skipInstalls"
|
|
47
|
+
},
|
|
48
|
+
"skipCache": {
|
|
49
|
+
"title": "Skip Cache",
|
|
50
|
+
"type": "boolean",
|
|
51
|
+
"description": "Skip the cache when building",
|
|
52
|
+
"id": "#skipCache"
|
|
53
|
+
},
|
|
54
|
+
"logLevel": {
|
|
55
|
+
"title": "Log Level",
|
|
56
|
+
"type": "string",
|
|
57
|
+
"description": "The log level to use for the build process",
|
|
58
|
+
"enum": [
|
|
59
|
+
"fatal",
|
|
60
|
+
"error",
|
|
61
|
+
"warn",
|
|
62
|
+
"success",
|
|
63
|
+
"info",
|
|
64
|
+
"debug",
|
|
65
|
+
"trace",
|
|
66
|
+
"silent"
|
|
67
|
+
],
|
|
68
|
+
"id": "#logLevel"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"type": "object",
|
|
72
|
+
"default": {
|
|
73
|
+
"outputPath": "dist/{projectRoot}",
|
|
74
|
+
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
75
|
+
"configFile": "{projectRoot}/powerlines.config.ts"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var chunkNXUUFBCT_js = require('../../../chunk-NXUUFBCT.js');
|
|
6
|
+
require('../../../chunk-MCZLD3NY.js');
|
|
7
7
|
require('../../../chunk-UOTRU26N.js');
|
|
8
8
|
require('../../../chunk-SHUYVCID.js');
|
|
9
9
|
|
|
@@ -11,9 +11,9 @@ require('../../../chunk-SHUYVCID.js');
|
|
|
11
11
|
|
|
12
12
|
Object.defineProperty(exports, "default", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunkNXUUFBCT_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkNXUUFBCT_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-ODVN2Q6Y.mjs';
|
|
2
|
+
import '../../../chunk-72SMJRRS.mjs';
|
|
3
3
|
import '../../../chunk-DVGRVHRD.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
3
|
+
// Do not edit this file directly
|
|
4
|
+
|
|
5
|
+
export interface LintExecutorSchema {
|
|
6
|
+
/**
|
|
7
|
+
* Output Path
|
|
8
|
+
*
|
|
9
|
+
* The output path for the build
|
|
10
|
+
*
|
|
11
|
+
* @default "dist/{projectRoot}"
|
|
12
|
+
*
|
|
13
|
+
* @format path
|
|
14
|
+
*/
|
|
15
|
+
outputPath?: string,
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* TypeScript Configuration File
|
|
19
|
+
*
|
|
20
|
+
* The path to the tsconfig file
|
|
21
|
+
*
|
|
22
|
+
* @default "{projectRoot}/tsconfig.json"
|
|
23
|
+
*
|
|
24
|
+
* @format path
|
|
25
|
+
*/
|
|
26
|
+
tsconfig?: string,
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Powerlines Configuration File
|
|
30
|
+
*
|
|
31
|
+
* The path to the Powerlines configuration file
|
|
32
|
+
*
|
|
33
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
34
|
+
*
|
|
35
|
+
* @format path
|
|
36
|
+
*/
|
|
37
|
+
configFile?: string,
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Mode
|
|
41
|
+
*
|
|
42
|
+
* The build mode
|
|
43
|
+
*
|
|
44
|
+
*
|
|
45
|
+
* @enum development,test,production
|
|
46
|
+
*/
|
|
47
|
+
mode?: string,
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Skip Installs
|
|
51
|
+
*
|
|
52
|
+
* Skip installing dependencies before building
|
|
53
|
+
*
|
|
54
|
+
*/
|
|
55
|
+
skipInstalls?: boolean,
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Skip Cache
|
|
59
|
+
*
|
|
60
|
+
* Skip the cache when building
|
|
61
|
+
*
|
|
62
|
+
*/
|
|
63
|
+
skipCache?: boolean,
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Log Level
|
|
67
|
+
*
|
|
68
|
+
* The log level to use for the build process
|
|
69
|
+
*
|
|
70
|
+
*
|
|
71
|
+
* @enum fatal,error,warn,success,info,debug,trace,silent
|
|
72
|
+
*/
|
|
73
|
+
logLevel?: string,
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "#",
|
|
3
|
+
"title": "Lint Executor",
|
|
4
|
+
"description": "A type definition for the Powerlines - Lint executor schema",
|
|
5
|
+
"required": [],
|
|
6
|
+
"properties": {
|
|
7
|
+
"outputPath": {
|
|
8
|
+
"title": "Output Path",
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "path",
|
|
11
|
+
"description": "The output path for the build",
|
|
12
|
+
"id": "#outputPath",
|
|
13
|
+
"default": "dist/{projectRoot}"
|
|
14
|
+
},
|
|
15
|
+
"tsconfig": {
|
|
16
|
+
"title": "TypeScript Configuration File",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"format": "path",
|
|
19
|
+
"description": "The path to the tsconfig file",
|
|
20
|
+
"id": "#tsconfig",
|
|
21
|
+
"default": "{projectRoot}/tsconfig.json"
|
|
22
|
+
},
|
|
23
|
+
"configFile": {
|
|
24
|
+
"title": "Powerlines Configuration File",
|
|
25
|
+
"type": "string",
|
|
26
|
+
"format": "path",
|
|
27
|
+
"description": "The path to the Powerlines configuration file",
|
|
28
|
+
"id": "#configFile",
|
|
29
|
+
"default": "{projectRoot}/powerlines.config.ts"
|
|
30
|
+
},
|
|
31
|
+
"mode": {
|
|
32
|
+
"title": "Mode",
|
|
33
|
+
"type": "string",
|
|
34
|
+
"description": "The build mode",
|
|
35
|
+
"enum": [
|
|
36
|
+
"development",
|
|
37
|
+
"test",
|
|
38
|
+
"production"
|
|
39
|
+
],
|
|
40
|
+
"id": "#mode"
|
|
41
|
+
},
|
|
42
|
+
"skipInstalls": {
|
|
43
|
+
"title": "Skip Installs",
|
|
44
|
+
"type": "boolean",
|
|
45
|
+
"description": "Skip installing dependencies before building",
|
|
46
|
+
"id": "#skipInstalls"
|
|
47
|
+
},
|
|
48
|
+
"skipCache": {
|
|
49
|
+
"title": "Skip Cache",
|
|
50
|
+
"type": "boolean",
|
|
51
|
+
"description": "Skip the cache when building",
|
|
52
|
+
"id": "#skipCache"
|
|
53
|
+
},
|
|
54
|
+
"logLevel": {
|
|
55
|
+
"title": "Log Level",
|
|
56
|
+
"type": "string",
|
|
57
|
+
"description": "The log level to use for the build process",
|
|
58
|
+
"enum": [
|
|
59
|
+
"fatal",
|
|
60
|
+
"error",
|
|
61
|
+
"warn",
|
|
62
|
+
"success",
|
|
63
|
+
"info",
|
|
64
|
+
"debug",
|
|
65
|
+
"trace",
|
|
66
|
+
"silent"
|
|
67
|
+
],
|
|
68
|
+
"id": "#logLevel"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"type": "object",
|
|
72
|
+
"default": {
|
|
73
|
+
"outputPath": "dist/{projectRoot}",
|
|
74
|
+
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
75
|
+
"configFile": "{projectRoot}/powerlines.config.ts"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var chunkUMVPNWWR_js = require('../../../chunk-UMVPNWWR.js');
|
|
6
|
+
require('../../../chunk-MCZLD3NY.js');
|
|
7
7
|
require('../../../chunk-UOTRU26N.js');
|
|
8
8
|
require('../../../chunk-SHUYVCID.js');
|
|
9
9
|
|
|
@@ -11,9 +11,9 @@ require('../../../chunk-SHUYVCID.js');
|
|
|
11
11
|
|
|
12
12
|
Object.defineProperty(exports, "default", {
|
|
13
13
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
14
|
+
get: function () { return chunkUMVPNWWR_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkUMVPNWWR_js.executorFn; }
|
|
19
19
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { executor_default as default, executorFn } from '../../../chunk-
|
|
2
|
-
import '../../../chunk-
|
|
1
|
+
export { executor_default as default, executorFn } from '../../../chunk-RJP4IZYY.mjs';
|
|
2
|
+
import '../../../chunk-72SMJRRS.mjs';
|
|
3
3
|
import '../../../chunk-DVGRVHRD.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
3
|
+
// Do not edit this file directly
|
|
4
|
+
|
|
5
|
+
export interface PrepareExecutorSchema {
|
|
6
|
+
/**
|
|
7
|
+
* Output Path
|
|
8
|
+
*
|
|
9
|
+
* The output path for the build
|
|
10
|
+
*
|
|
11
|
+
* @default "dist/{projectRoot}"
|
|
12
|
+
*
|
|
13
|
+
* @format path
|
|
14
|
+
*/
|
|
15
|
+
outputPath?: string,
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* TypeScript Configuration File
|
|
19
|
+
*
|
|
20
|
+
* The path to the tsconfig file
|
|
21
|
+
*
|
|
22
|
+
* @default "{projectRoot}/tsconfig.json"
|
|
23
|
+
*
|
|
24
|
+
* @format path
|
|
25
|
+
*/
|
|
26
|
+
tsconfig?: string,
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Powerlines Configuration File
|
|
30
|
+
*
|
|
31
|
+
* The path to the Powerlines configuration file
|
|
32
|
+
*
|
|
33
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
34
|
+
*
|
|
35
|
+
* @format path
|
|
36
|
+
*/
|
|
37
|
+
configFile?: string,
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Mode
|
|
41
|
+
*
|
|
42
|
+
* The build mode
|
|
43
|
+
*
|
|
44
|
+
*
|
|
45
|
+
* @enum development,test,production
|
|
46
|
+
*/
|
|
47
|
+
mode?: string,
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Skip Installs
|
|
51
|
+
*
|
|
52
|
+
* Skip installing dependencies before building
|
|
53
|
+
*
|
|
54
|
+
*/
|
|
55
|
+
skipInstalls?: boolean,
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Skip Cache
|
|
59
|
+
*
|
|
60
|
+
* Skip the cache when building
|
|
61
|
+
*
|
|
62
|
+
*/
|
|
63
|
+
skipCache?: boolean,
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Log Level
|
|
67
|
+
*
|
|
68
|
+
* The log level to use for the build process
|
|
69
|
+
*
|
|
70
|
+
*
|
|
71
|
+
* @enum fatal,error,warn,success,info,debug,trace,silent
|
|
72
|
+
*/
|
|
73
|
+
logLevel?: string,
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "#",
|
|
3
|
+
"title": "Prepare Executor",
|
|
4
|
+
"description": "A type definition for the Powerlines - Prepare executor schema",
|
|
5
|
+
"required": [],
|
|
6
|
+
"properties": {
|
|
7
|
+
"outputPath": {
|
|
8
|
+
"title": "Output Path",
|
|
9
|
+
"type": "string",
|
|
10
|
+
"format": "path",
|
|
11
|
+
"description": "The output path for the build",
|
|
12
|
+
"id": "#outputPath",
|
|
13
|
+
"default": "dist/{projectRoot}"
|
|
14
|
+
},
|
|
15
|
+
"tsconfig": {
|
|
16
|
+
"title": "TypeScript Configuration File",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"format": "path",
|
|
19
|
+
"description": "The path to the tsconfig file",
|
|
20
|
+
"id": "#tsconfig",
|
|
21
|
+
"default": "{projectRoot}/tsconfig.json"
|
|
22
|
+
},
|
|
23
|
+
"configFile": {
|
|
24
|
+
"title": "Powerlines Configuration File",
|
|
25
|
+
"type": "string",
|
|
26
|
+
"format": "path",
|
|
27
|
+
"description": "The path to the Powerlines configuration file",
|
|
28
|
+
"id": "#configFile",
|
|
29
|
+
"default": "{projectRoot}/powerlines.config.ts"
|
|
30
|
+
},
|
|
31
|
+
"mode": {
|
|
32
|
+
"title": "Mode",
|
|
33
|
+
"type": "string",
|
|
34
|
+
"description": "The build mode",
|
|
35
|
+
"enum": [
|
|
36
|
+
"development",
|
|
37
|
+
"test",
|
|
38
|
+
"production"
|
|
39
|
+
],
|
|
40
|
+
"id": "#mode"
|
|
41
|
+
},
|
|
42
|
+
"skipInstalls": {
|
|
43
|
+
"title": "Skip Installs",
|
|
44
|
+
"type": "boolean",
|
|
45
|
+
"description": "Skip installing dependencies before building",
|
|
46
|
+
"id": "#skipInstalls"
|
|
47
|
+
},
|
|
48
|
+
"skipCache": {
|
|
49
|
+
"title": "Skip Cache",
|
|
50
|
+
"type": "boolean",
|
|
51
|
+
"description": "Skip the cache when building",
|
|
52
|
+
"id": "#skipCache"
|
|
53
|
+
},
|
|
54
|
+
"logLevel": {
|
|
55
|
+
"title": "Log Level",
|
|
56
|
+
"type": "string",
|
|
57
|
+
"description": "The log level to use for the build process",
|
|
58
|
+
"enum": [
|
|
59
|
+
"fatal",
|
|
60
|
+
"error",
|
|
61
|
+
"warn",
|
|
62
|
+
"success",
|
|
63
|
+
"info",
|
|
64
|
+
"debug",
|
|
65
|
+
"trace",
|
|
66
|
+
"silent"
|
|
67
|
+
],
|
|
68
|
+
"id": "#logLevel"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"type": "object",
|
|
72
|
+
"default": {
|
|
73
|
+
"outputPath": "dist/{projectRoot}",
|
|
74
|
+
"tsconfig": "{projectRoot}/tsconfig.json",
|
|
75
|
+
"configFile": "{projectRoot}/powerlines.config.ts"
|
|
76
|
+
}
|
|
77
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
3
|
+
// Do not edit this file directly
|
|
4
|
+
|
|
5
|
+
export interface SyncGeneratorSchema {
|
|
6
|
+
/**
|
|
7
|
+
* Out of Sync Message
|
|
8
|
+
*
|
|
9
|
+
* The message to display when the project is out of sync with the legal-message.txt file
|
|
10
|
+
*
|
|
11
|
+
* @default "The legal-message.txt file needs to be created"
|
|
12
|
+
*/
|
|
13
|
+
outOfSyncMessage?: string,
|
|
14
|
+
}
|
|
15
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "#",
|
|
3
|
+
"title": "Sync Generator",
|
|
4
|
+
"description": "A type definition for the Powerlines - Sync generator's options",
|
|
5
|
+
"required": [],
|
|
6
|
+
"properties": {
|
|
7
|
+
"outOfSyncMessage": {
|
|
8
|
+
"title": "Out of Sync Message",
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "The message to display when the project is out of sync with the legal-message.txt file",
|
|
11
|
+
"id": "#outOfSyncMessage",
|
|
12
|
+
"default": "The legal-message.txt file needs to be created"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"type": "object",
|
|
16
|
+
"default": {
|
|
17
|
+
"outOfSyncMessage": "The legal-message.txt file needs to be created"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as _nx_devkit from '@nx/devkit';
|
|
2
2
|
|
|
3
3
|
interface NxPluginOptions {
|
|
4
4
|
clean?: false | {
|
|
@@ -173,7 +173,6 @@ interface NxPluginOptions {
|
|
|
173
173
|
};
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
-
declare const
|
|
177
|
-
declare const createNodesV2: CreateNodesV2<NxPluginOptions>;
|
|
176
|
+
declare const createNodesV2: _nx_devkit.CreateNodesV2<NxPluginOptions>;
|
|
178
177
|
|
|
179
|
-
export { createNodesV2
|
|
178
|
+
export { createNodesV2 };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as _nx_devkit from '@nx/devkit';
|
|
2
2
|
|
|
3
3
|
interface NxPluginOptions {
|
|
4
4
|
clean?: false | {
|
|
@@ -173,7 +173,6 @@ interface NxPluginOptions {
|
|
|
173
173
|
};
|
|
174
174
|
}
|
|
175
175
|
|
|
176
|
-
declare const
|
|
177
|
-
declare const createNodesV2: CreateNodesV2<NxPluginOptions>;
|
|
176
|
+
declare const createNodesV2: _nx_devkit.CreateNodesV2<NxPluginOptions>;
|
|
178
177
|
|
|
179
|
-
export { createNodesV2
|
|
178
|
+
export { createNodesV2 };
|
package/dist/src/plugin/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkL5RBARDS_js = require('../../chunk-L5RBARDS.js');
|
|
4
4
|
require('../../chunk-UOTRU26N.js');
|
|
5
5
|
require('../../chunk-SHUYVCID.js');
|
|
6
6
|
|
|
@@ -8,9 +8,5 @@ require('../../chunk-SHUYVCID.js');
|
|
|
8
8
|
|
|
9
9
|
Object.defineProperty(exports, "createNodesV2", {
|
|
10
10
|
enumerable: true,
|
|
11
|
-
get: function () { return
|
|
12
|
-
});
|
|
13
|
-
Object.defineProperty(exports, "name", {
|
|
14
|
-
enumerable: true,
|
|
15
|
-
get: function () { return chunk6QJOYEGY_js.name; }
|
|
11
|
+
get: function () { return chunkL5RBARDS_js.createNodesV2; }
|
|
16
12
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/nx",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.10",
|
|
4
4
|
"description": "A Nx plugin to support Powerlines development in Nx monorepos.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -140,12 +140,12 @@
|
|
|
140
140
|
"typings": "dist/index.d.ts",
|
|
141
141
|
"dependencies": {
|
|
142
142
|
"@nx/devkit": "^22.0.3",
|
|
143
|
-
"@storm-software/build-tools": "^0.158.
|
|
144
|
-
"@storm-software/config": "^1.134.
|
|
145
|
-
"@storm-software/config-tools": "^1.188.
|
|
146
|
-
"@storm-software/esbuild": "^0.53.
|
|
147
|
-
"@storm-software/unbuild": "^0.57.
|
|
148
|
-
"@storm-software/workspace-tools": "^1.293.
|
|
143
|
+
"@storm-software/build-tools": "^0.158.40",
|
|
144
|
+
"@storm-software/config": "^1.134.40",
|
|
145
|
+
"@storm-software/config-tools": "^1.188.40",
|
|
146
|
+
"@storm-software/esbuild": "^0.53.40",
|
|
147
|
+
"@storm-software/unbuild": "^0.57.40",
|
|
148
|
+
"@storm-software/workspace-tools": "^1.293.10",
|
|
149
149
|
"@stryke/fs": "^0.32.13",
|
|
150
150
|
"@stryke/hash": "^0.12.3",
|
|
151
151
|
"@stryke/path": "^0.19.2",
|
|
@@ -154,11 +154,11 @@
|
|
|
154
154
|
"defu": "^6.1.4",
|
|
155
155
|
"jiti": "^2.6.1",
|
|
156
156
|
"nx": "^22.0.3",
|
|
157
|
-
"powerlines": "^0.
|
|
157
|
+
"powerlines": "^0.20.0"
|
|
158
158
|
},
|
|
159
159
|
"devDependencies": {
|
|
160
160
|
"@nx/workspace": "^22.0.3",
|
|
161
|
-
"@storm-software/testing-tools": "^1.119.
|
|
161
|
+
"@storm-software/testing-tools": "^1.119.40",
|
|
162
162
|
"@types/node": "^22.19.1",
|
|
163
163
|
"eslint-flat-config-utils": "^2.1.4",
|
|
164
164
|
"jsonc-eslint-parser": "^2.4.1",
|
|
@@ -168,5 +168,5 @@
|
|
|
168
168
|
"publishConfig": { "access": "public" },
|
|
169
169
|
"executors": "./executors.json",
|
|
170
170
|
"generators": "./generators.json",
|
|
171
|
-
"gitHead": "
|
|
171
|
+
"gitHead": "e33924ab31dbf508b8983523edbaecffeebbee4f"
|
|
172
172
|
}
|