@powerlines/nx 0.10.55 → 0.10.57
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/src/executors/build/schema.d.ts +84 -0
- package/dist/src/executors/build/schema.json +94 -0
- package/dist/src/executors/clean/schema.d.ts +74 -0
- package/dist/src/executors/clean/schema.json +75 -0
- package/dist/src/executors/docs/schema.d.ts +74 -0
- package/dist/src/executors/docs/schema.json +75 -0
- package/dist/src/executors/lint/schema.d.ts +74 -0
- package/dist/src/executors/lint/schema.json +75 -0
- 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 +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Powerlines - Nx
|
|
4
4
|
|
|
5
|
+
## [0.10.56](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.56) (12/06/2025)
|
|
6
|
+
|
|
7
|
+
### Continuous Integration
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Update workflow actions to have consistent branch types
|
|
10
|
+
([fe571840](https://github.com/storm-software/powerlines/commit/fe571840))
|
|
11
|
+
|
|
12
|
+
### Updated Dependencies
|
|
13
|
+
|
|
14
|
+
- Updated **powerlines** to **v0.30.7**
|
|
15
|
+
|
|
16
|
+
## [0.10.55](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.55) (12/05/2025)
|
|
17
|
+
|
|
18
|
+
### Updated Dependencies
|
|
19
|
+
|
|
20
|
+
- Updated **powerlines** to **v0.30.6**
|
|
21
|
+
|
|
5
22
|
## [0.10.54](https://github.com/storm-software/powerlines/releases/tag/nx%400.10.54) (12/05/2025)
|
|
6
23
|
|
|
7
24
|
### Updated Dependencies
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
|
|
2
|
+
// Generated by @storm-software/untyped
|
|
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
|
+
* 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
|
+
/**
|
|
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
|
+
|
|
@@ -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
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
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
|
+
*
|
|
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": "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": "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
|
+
}
|
|
@@ -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
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/nx",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.57",
|
|
4
4
|
"description": "A Nx plugin to support Powerlines development in Nx monorepos.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -182,12 +182,12 @@
|
|
|
182
182
|
"typings": "dist/index.d.ts",
|
|
183
183
|
"dependencies": {
|
|
184
184
|
"@nx/devkit": "^22.1.3",
|
|
185
|
-
"@storm-software/build-tools": "^0.158.
|
|
186
|
-
"@storm-software/config": "^1.134.
|
|
187
|
-
"@storm-software/config-tools": "^1.188.
|
|
188
|
-
"@storm-software/esbuild": "^0.53.
|
|
189
|
-
"@storm-software/unbuild": "^0.57.
|
|
190
|
-
"@storm-software/workspace-tools": "^1.
|
|
185
|
+
"@storm-software/build-tools": "^0.158.59",
|
|
186
|
+
"@storm-software/config": "^1.134.59",
|
|
187
|
+
"@storm-software/config-tools": "^1.188.59",
|
|
188
|
+
"@storm-software/esbuild": "^0.53.59",
|
|
189
|
+
"@storm-software/unbuild": "^0.57.59",
|
|
190
|
+
"@storm-software/workspace-tools": "^1.294.3",
|
|
191
191
|
"@stryke/fs": "^0.33.9",
|
|
192
192
|
"@stryke/hash": "^0.12.15",
|
|
193
193
|
"@stryke/path": "^0.22.0",
|
|
@@ -196,11 +196,11 @@
|
|
|
196
196
|
"defu": "^6.1.4",
|
|
197
197
|
"jiti": "^2.6.1",
|
|
198
198
|
"nx": "^22.1.3",
|
|
199
|
-
"powerlines": "^0.30.
|
|
199
|
+
"powerlines": "^0.30.8"
|
|
200
200
|
},
|
|
201
201
|
"devDependencies": {
|
|
202
202
|
"@nx/workspace": "^22.1.3",
|
|
203
|
-
"@storm-software/testing-tools": "^1.119.
|
|
203
|
+
"@storm-software/testing-tools": "^1.119.59",
|
|
204
204
|
"@types/node": "^24.10.1",
|
|
205
205
|
"eslint-flat-config-utils": "^2.1.4",
|
|
206
206
|
"jsonc-eslint-parser": "^2.4.1",
|
|
@@ -210,5 +210,5 @@
|
|
|
210
210
|
"publishConfig": { "access": "public" },
|
|
211
211
|
"executors": "./executors.json",
|
|
212
212
|
"generators": "./generators.json",
|
|
213
|
-
"gitHead": "
|
|
213
|
+
"gitHead": "b6cd904eada6483fffd8791e64febb309d73f399"
|
|
214
214
|
}
|