@shell-shock/nx 0.0.7 → 0.0.9

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 CHANGED
@@ -2,6 +2,43 @@
2
2
 
3
3
  # Changelog for Shell Shock - Nx
4
4
 
5
+ ## [0.0.10](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.10) (02/03/2026)
6
+
7
+ ### Updated Dependencies
8
+
9
+ - Updated **core** to **v0.4.2**
10
+
11
+ ## [0.0.9](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.9) (02/02/2026)
12
+
13
+ ### Miscellaneous
14
+
15
+ - **preset-script:** Clean up alignment in `table` formatting ([d4a44fb](https://github.com/storm-software/shell-shock/commit/d4a44fb))
16
+ - **monorepo:** Update markdown `README.md` files ([2ba98db](https://github.com/storm-software/shell-shock/commit/2ba98db))
17
+
18
+ ### Updated Dependencies
19
+
20
+ - Updated **core** to **v0.4.1**
21
+
22
+ ## [0.0.8](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.8) (02/01/2026)
23
+
24
+ ### Updated Dependencies
25
+
26
+ - Updated **core** to **v0.4.0**
27
+
28
+ ## [0.0.7](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.7) (01/30/2026)
29
+
30
+ ### Miscellaneous
31
+
32
+ - **core:** Resolve issues writing builtin modules ([dda5285](https://github.com/storm-software/shell-shock/commit/dda5285))
33
+
34
+ ### Features
35
+
36
+ - **core:** Reorganize repository projects and implemented core ([ffa2d39](https://github.com/storm-software/shell-shock/commit/ffa2d39))
37
+
38
+ ### Updated Dependencies
39
+
40
+ - Updated **core** to **v0.3.0**
41
+
5
42
  ## [0.0.6](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.6) (01/07/2026)
6
43
 
7
44
  ### Miscellaneous
package/README.md CHANGED
@@ -247,7 +247,7 @@ generation of development tools, please reach out on our
247
247
 
248
248
  <br />
249
249
 
250
- <div align="center"><a href="https://stormsoftware.com" target="_blank"><img src="https://public.storm-cdn.com/icon-fill.png" alt="Storm Software" width="200px"/></a></div>
250
+ <div align="center"><a href="https://stormsoftware.com" target="_blank"><img src="https://public.storm-cdn.com/storm-software/icon-circle-fill-dark.png" alt="Storm Software" width="200px"/></a></div>
251
251
  <br />
252
252
  <div align="center"><a href="https://stormsoftware.com" target="_blank"><img src="https://public.storm-cdn.com/visit-us-text.svg" alt="Visit us at stormsoftware.com" height="90px"/></a></div>
253
253
 
@@ -0,0 +1,84 @@
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
+
@@ -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": "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
+ }
@@ -0,0 +1,84 @@
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
+
@@ -0,0 +1,94 @@
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
+ }
@@ -0,0 +1,84 @@
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
+
@@ -0,0 +1,94 @@
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
+ }
@@ -0,0 +1,84 @@
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
+
@@ -0,0 +1,94 @@
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
+ }
@@ -0,0 +1,84 @@
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
+
@@ -0,0 +1,94 @@
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shell-shock/nx",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
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.184",
109
- "@shell-shock/core": "^0.3.0",
108
+ "@powerlines/nx": "^0.11.193",
109
+ "@shell-shock/core": "^0.4.2",
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.24",
116
+ "powerlines": "^0.38.33",
117
117
  "untyped": "^1.5.2"
118
118
  },
119
119
  "devDependencies": {
120
- "@powerlines/plugin-tsdown": "^0.1.210",
121
- "@powerlines/plugin-untyped": "^0.2.210",
120
+ "@powerlines/plugin-tsdown": "^0.1.219",
121
+ "@powerlines/plugin-untyped": "^0.2.219",
122
122
  "@storm-software/testing-tools": "^1.119.75",
123
- "@types/node": "^22.19.7",
123
+ "@types/node": "^22.19.8",
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": "150522912ecb85c5d409659bc146c2c6ae635923"
129
+ "gitHead": "93f7eadb6fb5670226a117c04e7e8b505554d76d"
130
130
  }