@shell-shock/nx 0.0.9 → 0.0.12
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 +10 -0
- package/package.json +8 -8
- package/dist/executors/build/schema.d.ts +0 -84
- package/dist/executors/build/schema.json +0 -94
- package/dist/executors/clean/schema.d.ts +0 -84
- package/dist/executors/clean/schema.json +0 -94
- package/dist/executors/docs/schema.d.ts +0 -84
- package/dist/executors/docs/schema.json +0 -94
- package/dist/executors/lint/schema.d.ts +0 -84
- package/dist/executors/lint/schema.json +0 -94
- package/dist/executors/prepare/schema.d.ts +0 -84
- package/dist/executors/prepare/schema.json +0 -94
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Shell Shock - Nx
|
|
4
4
|
|
|
5
|
+
## [0.0.11](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.11) (02/05/2026)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **preset-script:** Resolve issue with banner header and footer display ([c5be6f4](https://github.com/storm-software/shell-shock/commit/c5be6f4))
|
|
10
|
+
|
|
11
|
+
### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated **core** to **v0.4.3**
|
|
14
|
+
|
|
5
15
|
## [0.0.10](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.10) (02/03/2026)
|
|
6
16
|
|
|
7
17
|
### Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shell-shock/nx",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "A Nx plugin to support Shell Shock development in Nx monorepos.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -105,26 +105,26 @@
|
|
|
105
105
|
"typings": "dist/src/index.d.cts",
|
|
106
106
|
"dependencies": {
|
|
107
107
|
"@nx/devkit": "22.4.1",
|
|
108
|
-
"@powerlines/nx": "^0.11.
|
|
109
|
-
"@shell-shock/core": "^0.4.
|
|
108
|
+
"@powerlines/nx": "^0.11.194",
|
|
109
|
+
"@shell-shock/core": "^0.4.4",
|
|
110
110
|
"@storm-software/config": "^1.135.1",
|
|
111
111
|
"@storm-software/config-tools": "^1.189.0",
|
|
112
112
|
"@storm-software/workspace-tools": "^1.294.32",
|
|
113
113
|
"@stryke/type-checks": "^0.5.23",
|
|
114
114
|
"defu": "^6.1.4",
|
|
115
115
|
"jiti": "^2.6.1",
|
|
116
|
-
"powerlines": "^0.38.
|
|
116
|
+
"powerlines": "^0.38.34",
|
|
117
117
|
"untyped": "^1.5.2"
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
|
-
"@powerlines/plugin-tsdown": "^0.1.
|
|
121
|
-
"@powerlines/plugin-untyped": "^0.2.
|
|
120
|
+
"@powerlines/plugin-tsdown": "^0.1.220",
|
|
121
|
+
"@powerlines/plugin-untyped": "^0.2.220",
|
|
122
122
|
"@storm-software/testing-tools": "^1.119.75",
|
|
123
|
-
"@types/node": "^22.19.
|
|
123
|
+
"@types/node": "^22.19.9",
|
|
124
124
|
"eslint-flat-config-utils": "2.1.4",
|
|
125
125
|
"jsonc-eslint-parser": "^2.4.2"
|
|
126
126
|
},
|
|
127
127
|
"publishConfig": { "access": "public" },
|
|
128
128
|
"executors": "./executors.json",
|
|
129
|
-
"gitHead": "
|
|
129
|
+
"gitHead": "2905cdd0c86c5c4f8b4205e82fd180ee0b97351e"
|
|
130
130
|
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// Generated by powerlines
|
|
3
|
-
// Do not edit this file directly
|
|
4
|
-
|
|
5
|
-
export interface BuildExecutorSchema {
|
|
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
|
-
* Shell Shock Configuration File
|
|
29
|
-
*
|
|
30
|
-
* The path to the Shell Shock configuration file
|
|
31
|
-
*
|
|
32
|
-
* @default "{projectRoot}/shell-shock.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
|
-
* Auto Install
|
|
50
|
-
*
|
|
51
|
-
* Automatically install dependencies before building
|
|
52
|
-
*
|
|
53
|
-
*/
|
|
54
|
-
autoInstall?: 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
|
-
/**
|
|
75
|
-
* Entry Path(s)
|
|
76
|
-
*
|
|
77
|
-
* The entry path(s) for the package
|
|
78
|
-
*
|
|
79
|
-
*
|
|
80
|
-
* @oneOf [object Object],[object Object]
|
|
81
|
-
*/
|
|
82
|
-
entry?: any,
|
|
83
|
-
}
|
|
84
|
-
|
|
@@ -1,94 +0,0 @@
|
|
|
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": "Shell Shock Configuration File",
|
|
24
|
-
"type": "string",
|
|
25
|
-
"format": "path",
|
|
26
|
-
"description": "The path to the Shell Shock configuration file",
|
|
27
|
-
"id": "#configFile",
|
|
28
|
-
"default": "{projectRoot}/shell-shock.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
|
-
"autoInstall": {
|
|
42
|
-
"title": "Auto Install",
|
|
43
|
-
"type": "boolean",
|
|
44
|
-
"description": "Automatically install dependencies before building",
|
|
45
|
-
"id": "#autoInstall"
|
|
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}/shell-shock.config.ts",
|
|
92
|
-
"entry": {}
|
|
93
|
-
}
|
|
94
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// Generated by powerlines
|
|
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
|
-
* Shell Shock Configuration File
|
|
29
|
-
*
|
|
30
|
-
* The path to the Shell Shock configuration file
|
|
31
|
-
*
|
|
32
|
-
* @default "{projectRoot}/shell-shock.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
|
-
* Auto Install
|
|
50
|
-
*
|
|
51
|
-
* Automatically install dependencies before building
|
|
52
|
-
*
|
|
53
|
-
*/
|
|
54
|
-
autoInstall?: 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
|
-
/**
|
|
75
|
-
* Entry Path(s)
|
|
76
|
-
*
|
|
77
|
-
* The entry path(s) for the package
|
|
78
|
-
*
|
|
79
|
-
*
|
|
80
|
-
* @oneOf [object Object],[object Object]
|
|
81
|
-
*/
|
|
82
|
-
entry?: any,
|
|
83
|
-
}
|
|
84
|
-
|
|
@@ -1,94 +0,0 @@
|
|
|
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": "Shell Shock Configuration File",
|
|
24
|
-
"type": "string",
|
|
25
|
-
"format": "path",
|
|
26
|
-
"description": "The path to the Shell Shock configuration file",
|
|
27
|
-
"id": "#configFile",
|
|
28
|
-
"default": "{projectRoot}/shell-shock.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
|
-
"autoInstall": {
|
|
42
|
-
"title": "Auto Install",
|
|
43
|
-
"type": "boolean",
|
|
44
|
-
"description": "Automatically install dependencies before building",
|
|
45
|
-
"id": "#autoInstall"
|
|
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}/shell-shock.config.ts",
|
|
92
|
-
"entry": {}
|
|
93
|
-
}
|
|
94
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// Generated by powerlines
|
|
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
|
-
* Shell Shock Configuration File
|
|
29
|
-
*
|
|
30
|
-
* The path to the Shell Shock configuration file
|
|
31
|
-
*
|
|
32
|
-
* @default "{projectRoot}/shell-shock.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
|
-
* Auto Install
|
|
50
|
-
*
|
|
51
|
-
* Automatically install dependencies before building
|
|
52
|
-
*
|
|
53
|
-
*/
|
|
54
|
-
autoInstall?: 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
|
-
/**
|
|
75
|
-
* Entry Path(s)
|
|
76
|
-
*
|
|
77
|
-
* The entry path(s) for the package
|
|
78
|
-
*
|
|
79
|
-
*
|
|
80
|
-
* @oneOf [object Object],[object Object]
|
|
81
|
-
*/
|
|
82
|
-
entry?: any,
|
|
83
|
-
}
|
|
84
|
-
|
|
@@ -1,94 +0,0 @@
|
|
|
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": "Shell Shock Configuration File",
|
|
24
|
-
"type": "string",
|
|
25
|
-
"format": "path",
|
|
26
|
-
"description": "The path to the Shell Shock configuration file",
|
|
27
|
-
"id": "#configFile",
|
|
28
|
-
"default": "{projectRoot}/shell-shock.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
|
-
"autoInstall": {
|
|
42
|
-
"title": "Auto Install",
|
|
43
|
-
"type": "boolean",
|
|
44
|
-
"description": "Automatically install dependencies before building",
|
|
45
|
-
"id": "#autoInstall"
|
|
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}/shell-shock.config.ts",
|
|
92
|
-
"entry": {}
|
|
93
|
-
}
|
|
94
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// Generated by powerlines
|
|
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
|
-
* Shell Shock Configuration File
|
|
29
|
-
*
|
|
30
|
-
* The path to the Shell Shock configuration file
|
|
31
|
-
*
|
|
32
|
-
* @default "{projectRoot}/shell-shock.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
|
-
* Auto Install
|
|
50
|
-
*
|
|
51
|
-
* Automatically install dependencies before building
|
|
52
|
-
*
|
|
53
|
-
*/
|
|
54
|
-
autoInstall?: 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
|
-
/**
|
|
75
|
-
* Entry Path(s)
|
|
76
|
-
*
|
|
77
|
-
* The entry path(s) for the package
|
|
78
|
-
*
|
|
79
|
-
*
|
|
80
|
-
* @oneOf [object Object],[object Object]
|
|
81
|
-
*/
|
|
82
|
-
entry?: any,
|
|
83
|
-
}
|
|
84
|
-
|
|
@@ -1,94 +0,0 @@
|
|
|
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": "Shell Shock Configuration File",
|
|
24
|
-
"type": "string",
|
|
25
|
-
"format": "path",
|
|
26
|
-
"description": "The path to the Shell Shock configuration file",
|
|
27
|
-
"id": "#configFile",
|
|
28
|
-
"default": "{projectRoot}/shell-shock.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
|
-
"autoInstall": {
|
|
42
|
-
"title": "Auto Install",
|
|
43
|
-
"type": "boolean",
|
|
44
|
-
"description": "Automatically install dependencies before building",
|
|
45
|
-
"id": "#autoInstall"
|
|
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}/shell-shock.config.ts",
|
|
92
|
-
"entry": {}
|
|
93
|
-
}
|
|
94
|
-
}
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
// Generated by powerlines
|
|
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
|
-
*
|
|
23
|
-
* @format path
|
|
24
|
-
*/
|
|
25
|
-
tsconfig?: string,
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* Shell Shock Configuration File
|
|
29
|
-
*
|
|
30
|
-
* The path to the Shell Shock configuration file
|
|
31
|
-
*
|
|
32
|
-
* @default "{projectRoot}/shell-shock.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
|
-
* Auto Install
|
|
50
|
-
*
|
|
51
|
-
* Automatically install dependencies before building
|
|
52
|
-
*
|
|
53
|
-
*/
|
|
54
|
-
autoInstall?: 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
|
-
/**
|
|
75
|
-
* Entry Path(s)
|
|
76
|
-
*
|
|
77
|
-
* The entry path(s) for the package
|
|
78
|
-
*
|
|
79
|
-
*
|
|
80
|
-
* @oneOf [object Object],[object Object]
|
|
81
|
-
*/
|
|
82
|
-
entry?: any,
|
|
83
|
-
}
|
|
84
|
-
|
|
@@ -1,94 +0,0 @@
|
|
|
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
|
-
},
|
|
22
|
-
"configFile": {
|
|
23
|
-
"title": "Shell Shock Configuration File",
|
|
24
|
-
"type": "string",
|
|
25
|
-
"format": "path",
|
|
26
|
-
"description": "The path to the Shell Shock configuration file",
|
|
27
|
-
"id": "#configFile",
|
|
28
|
-
"default": "{projectRoot}/shell-shock.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
|
-
"autoInstall": {
|
|
42
|
-
"title": "Auto Install",
|
|
43
|
-
"type": "boolean",
|
|
44
|
-
"description": "Automatically install dependencies before building",
|
|
45
|
-
"id": "#autoInstall"
|
|
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}/shell-shock.config.ts",
|
|
92
|
-
"entry": {}
|
|
93
|
-
}
|
|
94
|
-
}
|