@powerlines/nx 0.10.61 → 0.10.63
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 +17 -0
- package/dist/{chunk-73TJKRM4.js → chunk-2I2COQXO.js} +2 -2
- package/dist/{chunk-2X6KKBDQ.js → chunk-533WMZH3.js} +2 -2
- package/dist/{chunk-IIYV2EGQ.js → chunk-6BIJYAAM.js} +58 -26
- package/dist/{chunk-XUWMCW4V.mjs → chunk-AITHWYXX.mjs} +1 -1
- package/dist/{chunk-ZDQJ5X22.mjs → chunk-CZ5MSBO3.mjs} +1 -1
- package/dist/{chunk-AXGRNHCK.js → chunk-IPCWDRHB.js} +2 -2
- package/dist/{chunk-XF2ZF52T.mjs → chunk-NTS4NV36.mjs} +1 -1
- package/dist/{chunk-HDZBAF4F.js → chunk-RHBHSB3N.js} +2 -2
- package/dist/{chunk-Y3NVJ2RA.mjs → chunk-RINC6MFJ.mjs} +58 -26
- package/dist/{chunk-FNCKIEHO.js → chunk-SC4TK6EQ.js} +2 -2
- package/dist/{chunk-VYGD742V.mjs → chunk-WCPUUN4O.mjs} +1 -1
- package/dist/{chunk-3ZZUXF6K.mjs → chunk-XNSEB5AI.mjs} +1 -1
- package/dist/executors.js +11 -11
- package/dist/executors.mjs +6 -6
- package/dist/index.js +11 -11
- package/dist/index.mjs +6 -6
- 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 +84 -0
- package/dist/src/executors/build/schema.json +94 -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 +74 -0
- package/dist/src/executors/clean/schema.json +75 -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 +74 -0
- package/dist/src/executors/docs/schema.json +75 -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 +74 -0
- package/dist/src/executors/lint/schema.json +75 -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 +74 -0
- package/dist/src/executors/prepare/schema.json +75 -0
- package/dist/src/generators/sync/schema.d.ts +15 -0
- package/dist/src/generators/sync/schema.json +19 -0
- package/package.json +14 -14
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "#",
|
|
3
|
+
"title": "Build Executor",
|
|
4
|
+
"description": "A type definition for the Powerlines - Build 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
|
+
},
|
|
22
|
+
"configFile": {
|
|
23
|
+
"title": "Powerlines Configuration File",
|
|
24
|
+
"type": "string",
|
|
25
|
+
"format": "path",
|
|
26
|
+
"description": "The path to the Powerlines configuration file",
|
|
27
|
+
"id": "#configFile",
|
|
28
|
+
"default": "{projectRoot}/powerlines.config.ts"
|
|
29
|
+
},
|
|
30
|
+
"mode": {
|
|
31
|
+
"title": "Mode",
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "The build mode",
|
|
34
|
+
"enum": [
|
|
35
|
+
"development",
|
|
36
|
+
"test",
|
|
37
|
+
"production"
|
|
38
|
+
],
|
|
39
|
+
"id": "#mode"
|
|
40
|
+
},
|
|
41
|
+
"skipInstalls": {
|
|
42
|
+
"title": "Skip Installs",
|
|
43
|
+
"type": "boolean",
|
|
44
|
+
"description": "Skip installing dependencies before building",
|
|
45
|
+
"id": "#skipInstalls"
|
|
46
|
+
},
|
|
47
|
+
"skipCache": {
|
|
48
|
+
"title": "Skip Cache",
|
|
49
|
+
"type": "boolean",
|
|
50
|
+
"description": "Skip the cache when building",
|
|
51
|
+
"id": "#skipCache"
|
|
52
|
+
},
|
|
53
|
+
"logLevel": {
|
|
54
|
+
"title": "Log Level",
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "The log level to use for the build process",
|
|
57
|
+
"enum": [
|
|
58
|
+
"fatal",
|
|
59
|
+
"error",
|
|
60
|
+
"warn",
|
|
61
|
+
"success",
|
|
62
|
+
"info",
|
|
63
|
+
"debug",
|
|
64
|
+
"trace",
|
|
65
|
+
"silent"
|
|
66
|
+
],
|
|
67
|
+
"id": "#logLevel"
|
|
68
|
+
},
|
|
69
|
+
"entry": {
|
|
70
|
+
"title": "Entry Path(s)",
|
|
71
|
+
"description": "The entry path(s) for the package",
|
|
72
|
+
"oneOf": [
|
|
73
|
+
{
|
|
74
|
+
"type": "string"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"type": "array",
|
|
78
|
+
"items": {
|
|
79
|
+
"type": "string"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"id": "#entry",
|
|
84
|
+
"type": "any",
|
|
85
|
+
"default": {}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"type": "object",
|
|
89
|
+
"default": {
|
|
90
|
+
"outputPath": "dist/{projectRoot}",
|
|
91
|
+
"configFile": "{projectRoot}/powerlines.config.ts",
|
|
92
|
+
"entry": {}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var chunkSC4TK6EQ_js = require('../../../chunk-SC4TK6EQ.js');
|
|
6
|
+
require('../../../chunk-6BIJYAAM.js');
|
|
7
7
|
require('../../../chunk-DQI2I5KK.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 chunkSC4TK6EQ_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkSC4TK6EQ_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-AITHWYXX.mjs';
|
|
2
|
+
import '../../../chunk-RINC6MFJ.mjs';
|
|
3
3
|
import '../../../chunk-OVX2CEXQ.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
3
|
+
// Do not edit this file directly
|
|
4
|
+
|
|
5
|
+
export interface CleanExecutorSchema {
|
|
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
|
+
*
|
|
23
|
+
* @format path
|
|
24
|
+
*/
|
|
25
|
+
tsconfig?: string,
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Powerlines Configuration File
|
|
29
|
+
*
|
|
30
|
+
* The path to the Powerlines configuration file
|
|
31
|
+
*
|
|
32
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
33
|
+
*
|
|
34
|
+
* @format path
|
|
35
|
+
*/
|
|
36
|
+
configFile?: string,
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Mode
|
|
40
|
+
*
|
|
41
|
+
* The build mode
|
|
42
|
+
*
|
|
43
|
+
*
|
|
44
|
+
* @enum development,test,production
|
|
45
|
+
*/
|
|
46
|
+
mode?: string,
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Skip Installs
|
|
50
|
+
*
|
|
51
|
+
* Skip installing dependencies during prepare stage
|
|
52
|
+
*
|
|
53
|
+
*/
|
|
54
|
+
skipInstalls?: boolean,
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Skip Cache
|
|
58
|
+
*
|
|
59
|
+
* Skip the caching mechanism during the build process (if required)
|
|
60
|
+
*
|
|
61
|
+
*/
|
|
62
|
+
skipCache?: boolean,
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Log Level
|
|
66
|
+
*
|
|
67
|
+
* The log level to use for the build process
|
|
68
|
+
*
|
|
69
|
+
*
|
|
70
|
+
* @enum fatal,error,warn,success,info,debug,trace,silent
|
|
71
|
+
*/
|
|
72
|
+
logLevel?: string,
|
|
73
|
+
}
|
|
74
|
+
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "#",
|
|
3
|
+
"title": "Clean Executor",
|
|
4
|
+
"description": "A type definition for the Powerlines - Clean 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
|
+
},
|
|
22
|
+
"configFile": {
|
|
23
|
+
"title": "Powerlines Configuration File",
|
|
24
|
+
"type": "string",
|
|
25
|
+
"format": "path",
|
|
26
|
+
"description": "The path to the Powerlines configuration file",
|
|
27
|
+
"id": "#configFile",
|
|
28
|
+
"default": "{projectRoot}/powerlines.config.ts"
|
|
29
|
+
},
|
|
30
|
+
"mode": {
|
|
31
|
+
"title": "Mode",
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "The build mode",
|
|
34
|
+
"enum": [
|
|
35
|
+
"development",
|
|
36
|
+
"test",
|
|
37
|
+
"production"
|
|
38
|
+
],
|
|
39
|
+
"id": "#mode"
|
|
40
|
+
},
|
|
41
|
+
"skipInstalls": {
|
|
42
|
+
"title": "Skip Installs",
|
|
43
|
+
"type": "boolean",
|
|
44
|
+
"description": "Skip installing dependencies during prepare stage",
|
|
45
|
+
"id": "#skipInstalls"
|
|
46
|
+
},
|
|
47
|
+
"skipCache": {
|
|
48
|
+
"title": "Skip Cache",
|
|
49
|
+
"type": "boolean",
|
|
50
|
+
"description": "Skip the caching mechanism during the build process (if required)",
|
|
51
|
+
"id": "#skipCache"
|
|
52
|
+
},
|
|
53
|
+
"logLevel": {
|
|
54
|
+
"title": "Log Level",
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "The log level to use for the build process",
|
|
57
|
+
"enum": [
|
|
58
|
+
"fatal",
|
|
59
|
+
"error",
|
|
60
|
+
"warn",
|
|
61
|
+
"success",
|
|
62
|
+
"info",
|
|
63
|
+
"debug",
|
|
64
|
+
"trace",
|
|
65
|
+
"silent"
|
|
66
|
+
],
|
|
67
|
+
"id": "#logLevel"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"type": "object",
|
|
71
|
+
"default": {
|
|
72
|
+
"outputPath": "dist/{projectRoot}",
|
|
73
|
+
"configFile": "{projectRoot}/powerlines.config.ts"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var chunkRHBHSB3N_js = require('../../../chunk-RHBHSB3N.js');
|
|
6
|
+
require('../../../chunk-6BIJYAAM.js');
|
|
7
7
|
require('../../../chunk-DQI2I5KK.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 chunkRHBHSB3N_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkRHBHSB3N_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-CZ5MSBO3.mjs';
|
|
2
|
+
import '../../../chunk-RINC6MFJ.mjs';
|
|
3
3
|
import '../../../chunk-OVX2CEXQ.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -0,0 +1,74 @@
|
|
|
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
|
+
*
|
|
23
|
+
* @format path
|
|
24
|
+
*/
|
|
25
|
+
tsconfig?: string,
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Powerlines Configuration File
|
|
29
|
+
*
|
|
30
|
+
* The path to the Powerlines configuration file
|
|
31
|
+
*
|
|
32
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
33
|
+
*
|
|
34
|
+
* @format path
|
|
35
|
+
*/
|
|
36
|
+
configFile?: string,
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Mode
|
|
40
|
+
*
|
|
41
|
+
* The build mode
|
|
42
|
+
*
|
|
43
|
+
*
|
|
44
|
+
* @enum development,test,production
|
|
45
|
+
*/
|
|
46
|
+
mode?: string,
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Skip Installs
|
|
50
|
+
*
|
|
51
|
+
* Skip installing dependencies before building
|
|
52
|
+
*
|
|
53
|
+
*/
|
|
54
|
+
skipInstalls?: boolean,
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Skip Cache
|
|
58
|
+
*
|
|
59
|
+
* Skip the cache when building
|
|
60
|
+
*
|
|
61
|
+
*/
|
|
62
|
+
skipCache?: boolean,
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Log Level
|
|
66
|
+
*
|
|
67
|
+
* The log level to use for the build process
|
|
68
|
+
*
|
|
69
|
+
*
|
|
70
|
+
* @enum fatal,error,warn,success,info,debug,trace,silent
|
|
71
|
+
*/
|
|
72
|
+
logLevel?: string,
|
|
73
|
+
}
|
|
74
|
+
|
|
@@ -0,0 +1,75 @@
|
|
|
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
|
+
},
|
|
22
|
+
"configFile": {
|
|
23
|
+
"title": "Powerlines Configuration File",
|
|
24
|
+
"type": "string",
|
|
25
|
+
"format": "path",
|
|
26
|
+
"description": "The path to the Powerlines configuration file",
|
|
27
|
+
"id": "#configFile",
|
|
28
|
+
"default": "{projectRoot}/powerlines.config.ts"
|
|
29
|
+
},
|
|
30
|
+
"mode": {
|
|
31
|
+
"title": "Mode",
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "The build mode",
|
|
34
|
+
"enum": [
|
|
35
|
+
"development",
|
|
36
|
+
"test",
|
|
37
|
+
"production"
|
|
38
|
+
],
|
|
39
|
+
"id": "#mode"
|
|
40
|
+
},
|
|
41
|
+
"skipInstalls": {
|
|
42
|
+
"title": "Skip Installs",
|
|
43
|
+
"type": "boolean",
|
|
44
|
+
"description": "Skip installing dependencies before building",
|
|
45
|
+
"id": "#skipInstalls"
|
|
46
|
+
},
|
|
47
|
+
"skipCache": {
|
|
48
|
+
"title": "Skip Cache",
|
|
49
|
+
"type": "boolean",
|
|
50
|
+
"description": "Skip the cache when building",
|
|
51
|
+
"id": "#skipCache"
|
|
52
|
+
},
|
|
53
|
+
"logLevel": {
|
|
54
|
+
"title": "Log Level",
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "The log level to use for the build process",
|
|
57
|
+
"enum": [
|
|
58
|
+
"fatal",
|
|
59
|
+
"error",
|
|
60
|
+
"warn",
|
|
61
|
+
"success",
|
|
62
|
+
"info",
|
|
63
|
+
"debug",
|
|
64
|
+
"trace",
|
|
65
|
+
"silent"
|
|
66
|
+
],
|
|
67
|
+
"id": "#logLevel"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"type": "object",
|
|
71
|
+
"default": {
|
|
72
|
+
"outputPath": "dist/{projectRoot}",
|
|
73
|
+
"configFile": "{projectRoot}/powerlines.config.ts"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var chunkIPCWDRHB_js = require('../../../chunk-IPCWDRHB.js');
|
|
6
|
+
require('../../../chunk-6BIJYAAM.js');
|
|
7
7
|
require('../../../chunk-DQI2I5KK.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 chunkIPCWDRHB_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunkIPCWDRHB_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-NTS4NV36.mjs';
|
|
2
|
+
import '../../../chunk-RINC6MFJ.mjs';
|
|
3
3
|
import '../../../chunk-OVX2CEXQ.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|
|
@@ -0,0 +1,74 @@
|
|
|
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
|
+
*
|
|
23
|
+
* @format path
|
|
24
|
+
*/
|
|
25
|
+
tsconfig?: string,
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Powerlines Configuration File
|
|
29
|
+
*
|
|
30
|
+
* The path to the Powerlines configuration file
|
|
31
|
+
*
|
|
32
|
+
* @default "{projectRoot}/powerlines.config.ts"
|
|
33
|
+
*
|
|
34
|
+
* @format path
|
|
35
|
+
*/
|
|
36
|
+
configFile?: string,
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* Mode
|
|
40
|
+
*
|
|
41
|
+
* The build mode
|
|
42
|
+
*
|
|
43
|
+
*
|
|
44
|
+
* @enum development,test,production
|
|
45
|
+
*/
|
|
46
|
+
mode?: string,
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Skip Installs
|
|
50
|
+
*
|
|
51
|
+
* Skip installing dependencies before building
|
|
52
|
+
*
|
|
53
|
+
*/
|
|
54
|
+
skipInstalls?: boolean,
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Skip Cache
|
|
58
|
+
*
|
|
59
|
+
* Skip the cache when building
|
|
60
|
+
*
|
|
61
|
+
*/
|
|
62
|
+
skipCache?: boolean,
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Log Level
|
|
66
|
+
*
|
|
67
|
+
* The log level to use for the build process
|
|
68
|
+
*
|
|
69
|
+
*
|
|
70
|
+
* @enum fatal,error,warn,success,info,debug,trace,silent
|
|
71
|
+
*/
|
|
72
|
+
logLevel?: string,
|
|
73
|
+
}
|
|
74
|
+
|
|
@@ -0,0 +1,75 @@
|
|
|
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
|
+
},
|
|
22
|
+
"configFile": {
|
|
23
|
+
"title": "Powerlines Configuration File",
|
|
24
|
+
"type": "string",
|
|
25
|
+
"format": "path",
|
|
26
|
+
"description": "The path to the Powerlines configuration file",
|
|
27
|
+
"id": "#configFile",
|
|
28
|
+
"default": "{projectRoot}/powerlines.config.ts"
|
|
29
|
+
},
|
|
30
|
+
"mode": {
|
|
31
|
+
"title": "Mode",
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "The build mode",
|
|
34
|
+
"enum": [
|
|
35
|
+
"development",
|
|
36
|
+
"test",
|
|
37
|
+
"production"
|
|
38
|
+
],
|
|
39
|
+
"id": "#mode"
|
|
40
|
+
},
|
|
41
|
+
"skipInstalls": {
|
|
42
|
+
"title": "Skip Installs",
|
|
43
|
+
"type": "boolean",
|
|
44
|
+
"description": "Skip installing dependencies before building",
|
|
45
|
+
"id": "#skipInstalls"
|
|
46
|
+
},
|
|
47
|
+
"skipCache": {
|
|
48
|
+
"title": "Skip Cache",
|
|
49
|
+
"type": "boolean",
|
|
50
|
+
"description": "Skip the cache when building",
|
|
51
|
+
"id": "#skipCache"
|
|
52
|
+
},
|
|
53
|
+
"logLevel": {
|
|
54
|
+
"title": "Log Level",
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "The log level to use for the build process",
|
|
57
|
+
"enum": [
|
|
58
|
+
"fatal",
|
|
59
|
+
"error",
|
|
60
|
+
"warn",
|
|
61
|
+
"success",
|
|
62
|
+
"info",
|
|
63
|
+
"debug",
|
|
64
|
+
"trace",
|
|
65
|
+
"silent"
|
|
66
|
+
],
|
|
67
|
+
"id": "#logLevel"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"type": "object",
|
|
71
|
+
"default": {
|
|
72
|
+
"outputPath": "dist/{projectRoot}",
|
|
73
|
+
"configFile": "{projectRoot}/powerlines.config.ts"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
require('../../../chunk-
|
|
5
|
+
var chunk2I2COQXO_js = require('../../../chunk-2I2COQXO.js');
|
|
6
|
+
require('../../../chunk-6BIJYAAM.js');
|
|
7
7
|
require('../../../chunk-DQI2I5KK.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 chunk2I2COQXO_js.executor_default; }
|
|
15
15
|
});
|
|
16
16
|
Object.defineProperty(exports, "executorFn", {
|
|
17
17
|
enumerable: true,
|
|
18
|
-
get: function () { return
|
|
18
|
+
get: function () { return chunk2I2COQXO_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-XNSEB5AI.mjs';
|
|
2
|
+
import '../../../chunk-RINC6MFJ.mjs';
|
|
3
3
|
import '../../../chunk-OVX2CEXQ.mjs';
|
|
4
4
|
import '../../../chunk-O6YSETKJ.mjs';
|