@storm-software/workspace-tools 1.291.2 → 1.291.3

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.
Files changed (85) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/README.md +1 -1
  3. package/dist/{chunk-IOIIADML.mjs → chunk-62YC5BF3.mjs} +1 -1
  4. package/dist/{chunk-W5GG7QT2.mjs → chunk-E5BBAYQJ.mjs} +1 -1
  5. package/dist/{chunk-SEUH2IGO.mjs → chunk-H6HDAYMM.mjs} +1 -1
  6. package/dist/{chunk-GXE5LDEQ.mjs → chunk-HHYE6PWA.mjs} +1 -1
  7. package/dist/{chunk-NMQP6WEB.mjs → chunk-LOFMB5G3.mjs} +1 -1
  8. package/dist/executors.mjs +1 -1
  9. package/dist/generators.mjs +5 -5
  10. package/dist/index.mjs +5 -5
  11. package/dist/src/base/base-executor.mjs +1 -1
  12. package/dist/src/base/base-executor.untyped.mjs +1 -1
  13. package/dist/src/base/base-generator.mjs +1 -1
  14. package/dist/src/base/base-generator.untyped.mjs +1 -1
  15. package/dist/src/base/cargo-base-executor.untyped.mjs +1 -1
  16. package/dist/src/base/index.mjs +1 -1
  17. package/dist/src/base/typescript-build-executor.untyped.mjs +1 -1
  18. package/dist/src/base/typescript-library-generator.untyped.mjs +1 -1
  19. package/dist/src/executors/cargo-build/executor.mjs +1 -1
  20. package/dist/src/executors/cargo-build/untyped.mjs +1 -1
  21. package/dist/src/executors/cargo-check/executor.mjs +1 -1
  22. package/dist/src/executors/cargo-check/untyped.mjs +1 -1
  23. package/dist/src/executors/cargo-clippy/executor.mjs +1 -1
  24. package/dist/src/executors/cargo-clippy/untyped.mjs +1 -1
  25. package/dist/src/executors/cargo-doc/executor.mjs +1 -1
  26. package/dist/src/executors/cargo-doc/untyped.mjs +1 -1
  27. package/dist/src/executors/cargo-format/executor.mjs +1 -1
  28. package/dist/src/executors/cargo-format/untyped.mjs +1 -1
  29. package/dist/src/executors/cargo-publish/executor.mjs +1 -1
  30. package/dist/src/executors/cargo-publish/untyped.mjs +1 -1
  31. package/dist/src/executors/clean-package/executor.mjs +1 -1
  32. package/dist/src/executors/clean-package/untyped.mjs +1 -1
  33. package/dist/src/executors/esbuild/executor.mjs +1 -1
  34. package/dist/src/executors/esbuild/untyped.mjs +1 -1
  35. package/dist/src/executors/npm-publish/executor.mjs +1 -1
  36. package/dist/src/executors/npm-publish/untyped.mjs +1 -1
  37. package/dist/src/executors/size-limit/executor.mjs +1 -1
  38. package/dist/src/executors/size-limit/untyped.mjs +1 -1
  39. package/dist/src/executors/tsdown/executor.mjs +1 -1
  40. package/dist/src/executors/tsdown/untyped.mjs +1 -1
  41. package/dist/src/executors/typia/executor.mjs +1 -1
  42. package/dist/src/executors/typia/untyped.mjs +1 -1
  43. package/dist/src/executors/unbuild/executor.mjs +1 -1
  44. package/dist/src/executors/unbuild/untyped.mjs +1 -1
  45. package/dist/src/generators/browser-library/generator.mjs +2 -2
  46. package/dist/src/generators/browser-library/schema.d.ts +122 -0
  47. package/dist/src/generators/browser-library/untyped.mjs +1 -1
  48. package/dist/src/generators/config-schema/generator.mjs +1 -1
  49. package/dist/src/generators/config-schema/schema.d.ts +23 -0
  50. package/dist/src/generators/config-schema/untyped.mjs +1 -1
  51. package/dist/src/generators/init/init.mjs +1 -1
  52. package/dist/src/generators/init/schema.d.ts +14 -0
  53. package/dist/src/generators/init/untyped.mjs +1 -1
  54. package/dist/src/generators/neutral-library/generator.mjs +2 -2
  55. package/dist/src/generators/neutral-library/schema.d.ts +122 -0
  56. package/dist/src/generators/neutral-library/untyped.mjs +1 -1
  57. package/dist/src/generators/node-library/generator.mjs +2 -2
  58. package/dist/src/generators/node-library/schema.d.ts +122 -0
  59. package/dist/src/generators/node-library/untyped.mjs +1 -1
  60. package/dist/src/generators/preset/generator.mjs +2 -2
  61. package/dist/src/generators/preset/schema.d.ts +101 -0
  62. package/dist/src/generators/preset/untyped.mjs +1 -1
  63. package/dist/src/generators/release-version/generator.mjs +1 -1
  64. package/dist/src/generators/release-version/schema.d.ts +180 -0
  65. package/dist/src/generators/release-version/untyped.mjs +1 -1
  66. package/dist/src/plugins/rust/cargo-toml.mjs +1 -1
  67. package/dist/src/plugins/rust/index.mjs +1 -1
  68. package/dist/src/plugins/typescript/index.mjs +1 -1
  69. package/dist/src/plugins/typescript/tsdown.mjs +1 -1
  70. package/dist/src/plugins/typescript/tsup.mjs +1 -1
  71. package/dist/src/plugins/typescript/untyped-schema.mjs +1 -1
  72. package/dist/src/types.mjs +1 -1
  73. package/dist/src/utils/apply-workspace-tokens.mjs +1 -1
  74. package/dist/src/utils/cargo.mjs +1 -1
  75. package/dist/src/utils/create-cli-options.mjs +1 -1
  76. package/dist/src/utils/get-project-configurations.mjs +1 -1
  77. package/dist/src/utils/index.mjs +1 -1
  78. package/dist/src/utils/lock-file.mjs +1 -1
  79. package/dist/src/utils/nx-json.mjs +1 -1
  80. package/dist/src/utils/package-helpers.mjs +1 -1
  81. package/dist/src/utils/plugin-helpers.mjs +1 -1
  82. package/dist/src/utils/project-tags.mjs +1 -1
  83. package/dist/src/utils/typia-transform.mjs +1 -1
  84. package/dist/src/utils/versions.mjs +1 -1
  85. package/package.json +9 -9
@@ -0,0 +1,122 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface BrowserLibraryGeneratorSchema {
6
+ /**
7
+ * Directory
8
+ *
9
+ * The directory to create the library in
10
+ *
11
+ */
12
+ directory: string,
13
+
14
+ /**
15
+ * Name
16
+ *
17
+ * The name of the library
18
+ *
19
+ */
20
+ name: string,
21
+
22
+ /**
23
+ * Description
24
+ *
25
+ * The description of the library
26
+ *
27
+ */
28
+ description?: string,
29
+
30
+ /**
31
+ * Build Executor
32
+ *
33
+ * The executor to use for building the library
34
+ *
35
+ * @default "@storm-software/workspace-tools:unbuild"
36
+ */
37
+ buildExecutor?: string,
38
+
39
+ /**
40
+ * Platform
41
+ *
42
+ * The platform to target with the library
43
+ *
44
+ * @default "browser"
45
+ *
46
+ * @enum browser,neutral
47
+ */
48
+ platform?: string,
49
+
50
+ /**
51
+ * Import Path
52
+ *
53
+ * The import path for the library
54
+ *
55
+ */
56
+ importPath?: string,
57
+
58
+ /**
59
+ * Tags
60
+ *
61
+ * The tags for the library
62
+ *
63
+ */
64
+ tags?: string,
65
+
66
+ /**
67
+ * Unit Test Runner
68
+ *
69
+ * The unit test runner to use
70
+ *
71
+ *
72
+ * @enum jest,vitest,none
73
+ */
74
+ unitTestRunner?: string,
75
+
76
+ /**
77
+ * Test Environment
78
+ *
79
+ * The test environment to use
80
+ *
81
+ *
82
+ * @enum jsdom,node
83
+ */
84
+ testEnvironment?: string,
85
+
86
+ /**
87
+ * Pascal Case Files
88
+ *
89
+ * Use PascalCase for file names
90
+ *
91
+ * @default false
92
+ */
93
+ pascalCaseFiles?: boolean,
94
+
95
+ /**
96
+ * Strict
97
+ *
98
+ * Enable strict mode
99
+ *
100
+ * @default true
101
+ */
102
+ strict?: boolean,
103
+
104
+ /**
105
+ * Publishable
106
+ *
107
+ * Make the library publishable
108
+ *
109
+ * @default false
110
+ */
111
+ publishable?: boolean,
112
+
113
+ /**
114
+ * Buildable
115
+ *
116
+ * Make the library buildable
117
+ *
118
+ * @default true
119
+ */
120
+ buildable?: boolean,
121
+ }
122
+
@@ -2,7 +2,7 @@ import {
2
2
  typescript_library_generator_untyped_default
3
3
  } from "../../../chunk-SW2E5MQJ.mjs";
4
4
  import "../../../chunk-34LSWMWV.mjs";
5
- import "../../../chunk-NMQP6WEB.mjs";
5
+ import "../../../chunk-LOFMB5G3.mjs";
6
6
 
7
7
  // src/generators/browser-library/untyped.ts
8
8
  import { defineUntypedSchema } from "untyped";
@@ -8,7 +8,7 @@ import "../../../chunk-Y4TAQWND.mjs";
8
8
  import "../../../chunk-V44DYGWX.mjs";
9
9
  import "../../../chunk-VGJEUOUN.mjs";
10
10
  import "../../../chunk-C26A6BXG.mjs";
11
- import "../../../chunk-NMQP6WEB.mjs";
11
+ import "../../../chunk-LOFMB5G3.mjs";
12
12
  export {
13
13
  configSchemaGeneratorFn,
14
14
  generator_default as default
@@ -0,0 +1,23 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface ConfigSchemaGeneratorSchema {
6
+ /**
7
+ * Directory
8
+ *
9
+ * The directory to create the library in
10
+ *
11
+ */
12
+ directory?: string,
13
+
14
+ /**
15
+ * Output File
16
+ *
17
+ * The file to write the schema to
18
+ *
19
+ * @default "{workspaceRoot}/storm-workspace.schema.json"
20
+ */
21
+ outputFile?: string,
22
+ }
23
+
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  base_generator_untyped_default
3
3
  } from "../../../chunk-34LSWMWV.mjs";
4
- import "../../../chunk-NMQP6WEB.mjs";
4
+ import "../../../chunk-LOFMB5G3.mjs";
5
5
 
6
6
  // src/generators/config-schema/untyped.ts
7
7
  import { defineUntypedSchema } from "untyped";
@@ -2,7 +2,7 @@ import {
2
2
  initGenerator,
3
3
  init_default
4
4
  } from "../../../chunk-437WGH2M.mjs";
5
- import "../../../chunk-NMQP6WEB.mjs";
5
+ import "../../../chunk-LOFMB5G3.mjs";
6
6
  export {
7
7
  init_default as default,
8
8
  initGenerator
@@ -0,0 +1,14 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface InitGeneratorSchema {
6
+ /**
7
+ * Skip Format
8
+ *
9
+ * Skip formatting the generated files
10
+ *
11
+ */
12
+ skipFormat?: boolean,
13
+ }
14
+
@@ -1,4 +1,4 @@
1
- import "../../../chunk-NMQP6WEB.mjs";
1
+ import "../../../chunk-LOFMB5G3.mjs";
2
2
 
3
3
  // src/generators/init/untyped.ts
4
4
  import { defineUntypedSchema } from "untyped";
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  neutralLibraryGeneratorFn
4
- } from "../../../chunk-SEUH2IGO.mjs";
4
+ } from "../../../chunk-H6HDAYMM.mjs";
5
5
  import "../../../chunk-HP36FVRU.mjs";
6
6
  import "../../../chunk-QC5ON3X4.mjs";
7
7
  import "../../../chunk-F66XEAID.mjs";
@@ -11,7 +11,7 @@ import "../../../chunk-Y4TAQWND.mjs";
11
11
  import "../../../chunk-V44DYGWX.mjs";
12
12
  import "../../../chunk-VGJEUOUN.mjs";
13
13
  import "../../../chunk-C26A6BXG.mjs";
14
- import "../../../chunk-NMQP6WEB.mjs";
14
+ import "../../../chunk-LOFMB5G3.mjs";
15
15
  export {
16
16
  generator_default as default,
17
17
  neutralLibraryGeneratorFn
@@ -0,0 +1,122 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface NeutralLibraryGeneratorSchema {
6
+ /**
7
+ * Directory
8
+ *
9
+ * The directory to create the library in
10
+ *
11
+ */
12
+ directory: string,
13
+
14
+ /**
15
+ * Name
16
+ *
17
+ * The name of the library
18
+ *
19
+ */
20
+ name: string,
21
+
22
+ /**
23
+ * Description
24
+ *
25
+ * The description of the library
26
+ *
27
+ */
28
+ description?: string,
29
+
30
+ /**
31
+ * Build Executor
32
+ *
33
+ * The executor to use for building the library
34
+ *
35
+ * @default "@storm-software/workspace-tools:unbuild"
36
+ */
37
+ buildExecutor?: string,
38
+
39
+ /**
40
+ * Platform
41
+ *
42
+ * The platform to target with the library
43
+ *
44
+ * @default "neutral"
45
+ *
46
+ * @enum neutral
47
+ */
48
+ platform?: string,
49
+
50
+ /**
51
+ * Import Path
52
+ *
53
+ * The import path for the library
54
+ *
55
+ */
56
+ importPath?: string,
57
+
58
+ /**
59
+ * Tags
60
+ *
61
+ * The tags for the library
62
+ *
63
+ */
64
+ tags?: string,
65
+
66
+ /**
67
+ * Unit Test Runner
68
+ *
69
+ * The unit test runner to use
70
+ *
71
+ *
72
+ * @enum jest,vitest,none
73
+ */
74
+ unitTestRunner?: string,
75
+
76
+ /**
77
+ * Test Environment
78
+ *
79
+ * The test environment to use
80
+ *
81
+ *
82
+ * @enum jsdom,node
83
+ */
84
+ testEnvironment?: string,
85
+
86
+ /**
87
+ * Pascal Case Files
88
+ *
89
+ * Use PascalCase for file names
90
+ *
91
+ * @default false
92
+ */
93
+ pascalCaseFiles?: boolean,
94
+
95
+ /**
96
+ * Strict
97
+ *
98
+ * Enable strict mode
99
+ *
100
+ * @default true
101
+ */
102
+ strict?: boolean,
103
+
104
+ /**
105
+ * Publishable
106
+ *
107
+ * Make the library publishable
108
+ *
109
+ * @default false
110
+ */
111
+ publishable?: boolean,
112
+
113
+ /**
114
+ * Buildable
115
+ *
116
+ * Make the library buildable
117
+ *
118
+ * @default true
119
+ */
120
+ buildable?: boolean,
121
+ }
122
+
@@ -2,7 +2,7 @@ import {
2
2
  typescript_library_generator_untyped_default
3
3
  } from "../../../chunk-SW2E5MQJ.mjs";
4
4
  import "../../../chunk-34LSWMWV.mjs";
5
- import "../../../chunk-NMQP6WEB.mjs";
5
+ import "../../../chunk-LOFMB5G3.mjs";
6
6
 
7
7
  // src/generators/neutral-library/untyped.ts
8
8
  import { defineUntypedSchema } from "untyped";
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  nodeLibraryGeneratorFn
4
- } from "../../../chunk-IOIIADML.mjs";
4
+ } from "../../../chunk-62YC5BF3.mjs";
5
5
  import "../../../chunk-HP36FVRU.mjs";
6
6
  import "../../../chunk-QC5ON3X4.mjs";
7
7
  import "../../../chunk-F66XEAID.mjs";
@@ -11,7 +11,7 @@ import "../../../chunk-Y4TAQWND.mjs";
11
11
  import "../../../chunk-V44DYGWX.mjs";
12
12
  import "../../../chunk-VGJEUOUN.mjs";
13
13
  import "../../../chunk-C26A6BXG.mjs";
14
- import "../../../chunk-NMQP6WEB.mjs";
14
+ import "../../../chunk-LOFMB5G3.mjs";
15
15
  export {
16
16
  generator_default as default,
17
17
  nodeLibraryGeneratorFn
@@ -0,0 +1,122 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface NodeLibraryGeneratorSchema {
6
+ /**
7
+ * Directory
8
+ *
9
+ * The directory to create the library in
10
+ *
11
+ */
12
+ directory: string,
13
+
14
+ /**
15
+ * Name
16
+ *
17
+ * The name of the library
18
+ *
19
+ */
20
+ name: string,
21
+
22
+ /**
23
+ * Description
24
+ *
25
+ * The description of the library
26
+ *
27
+ */
28
+ description?: string,
29
+
30
+ /**
31
+ * Build Executor
32
+ *
33
+ * The executor to use for building the library
34
+ *
35
+ * @default "@storm-software/workspace-tools:unbuild"
36
+ */
37
+ buildExecutor?: string,
38
+
39
+ /**
40
+ * Platform
41
+ *
42
+ * The platform to target with the library
43
+ *
44
+ * @default "node"
45
+ *
46
+ * @enum node,neutral
47
+ */
48
+ platform?: string,
49
+
50
+ /**
51
+ * Import Path
52
+ *
53
+ * The import path for the library
54
+ *
55
+ */
56
+ importPath?: string,
57
+
58
+ /**
59
+ * Tags
60
+ *
61
+ * The tags for the library
62
+ *
63
+ */
64
+ tags?: string,
65
+
66
+ /**
67
+ * Unit Test Runner
68
+ *
69
+ * The unit test runner to use
70
+ *
71
+ *
72
+ * @enum jest,vitest,none
73
+ */
74
+ unitTestRunner?: string,
75
+
76
+ /**
77
+ * Test Environment
78
+ *
79
+ * The test environment to use
80
+ *
81
+ *
82
+ * @enum jsdom,node
83
+ */
84
+ testEnvironment?: string,
85
+
86
+ /**
87
+ * Pascal Case Files
88
+ *
89
+ * Use PascalCase for file names
90
+ *
91
+ * @default false
92
+ */
93
+ pascalCaseFiles?: boolean,
94
+
95
+ /**
96
+ * Strict
97
+ *
98
+ * Enable strict mode
99
+ *
100
+ * @default true
101
+ */
102
+ strict?: boolean,
103
+
104
+ /**
105
+ * Publishable
106
+ *
107
+ * Make the library publishable
108
+ *
109
+ * @default false
110
+ */
111
+ publishable?: boolean,
112
+
113
+ /**
114
+ * Buildable
115
+ *
116
+ * Make the library buildable
117
+ *
118
+ * @default true
119
+ */
120
+ buildable?: boolean,
121
+ }
122
+
@@ -2,7 +2,7 @@ import {
2
2
  typescript_library_generator_untyped_default
3
3
  } from "../../../chunk-SW2E5MQJ.mjs";
4
4
  import "../../../chunk-34LSWMWV.mjs";
5
- import "../../../chunk-NMQP6WEB.mjs";
5
+ import "../../../chunk-LOFMB5G3.mjs";
6
6
 
7
7
  // src/generators/node-library/untyped.ts
8
8
  import { defineUntypedSchema } from "untyped";
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generator_default,
3
3
  presetGeneratorFn
4
- } from "../../../chunk-GXE5LDEQ.mjs";
4
+ } from "../../../chunk-HHYE6PWA.mjs";
5
5
  import "../../../chunk-QC5ON3X4.mjs";
6
6
  import "../../../chunk-2HVWUI3X.mjs";
7
7
  import "../../../chunk-76SRFTZ2.mjs";
@@ -9,7 +9,7 @@ import "../../../chunk-Y4TAQWND.mjs";
9
9
  import "../../../chunk-V44DYGWX.mjs";
10
10
  import "../../../chunk-VGJEUOUN.mjs";
11
11
  import "../../../chunk-C26A6BXG.mjs";
12
- import "../../../chunk-NMQP6WEB.mjs";
12
+ import "../../../chunk-LOFMB5G3.mjs";
13
13
  export {
14
14
  generator_default as default,
15
15
  presetGeneratorFn
@@ -0,0 +1,101 @@
1
+
2
+ // Generated by @storm-software/untyped
3
+ // Do not edit this file directly
4
+
5
+ export interface PresetGeneratorSchema {
6
+ /**
7
+ * Directory
8
+ *
9
+ * The directory to create the library in
10
+ *
11
+ */
12
+ directory: string,
13
+
14
+ /**
15
+ * Name
16
+ *
17
+ * The name of the workspace
18
+ *
19
+ */
20
+ name: string,
21
+
22
+ /**
23
+ * Organization
24
+ *
25
+ * The organization of the workspace
26
+ *
27
+ * @default "storm-software"
28
+ */
29
+ organization?: string,
30
+
31
+ /**
32
+ * Include Apps
33
+ *
34
+ * Include apps in the workspace
35
+ *
36
+ * @default true
37
+ */
38
+ includeApps?: boolean,
39
+
40
+ /**
41
+ * Include Rust
42
+ *
43
+ * Include Rust support in the workspace
44
+ *
45
+ * @default false
46
+ */
47
+ includeRust?: boolean,
48
+
49
+ /**
50
+ * Namespace
51
+ *
52
+ * The namespace of the workspace
53
+ *
54
+ * @default "storm-software"
55
+ */
56
+ namespace?: string,
57
+
58
+ /**
59
+ * Description
60
+ *
61
+ * The description of the workspace
62
+ *
63
+ */
64
+ description?: string,
65
+
66
+ /**
67
+ * Repository URL
68
+ *
69
+ * The URL of the repository
70
+ *
71
+ */
72
+ repositoryUrl?: string,
73
+
74
+ /**
75
+ * Nx Cloud
76
+ *
77
+ * Nx Cloud configuration
78
+ *
79
+ */
80
+ nxCloud?: string,
81
+
82
+ /**
83
+ * Mode
84
+ *
85
+ * The mode of the Nx client
86
+ *
87
+ */
88
+ mode?: string,
89
+
90
+ /**
91
+ * Package Manager
92
+ *
93
+ * The package manager to use
94
+ *
95
+ * @default "pnpm"
96
+ *
97
+ * @enum npm,pnpm,yarn,bun
98
+ */
99
+ packageManager?: string,
100
+ }
101
+
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  base_generator_untyped_default
3
3
  } from "../../../chunk-34LSWMWV.mjs";
4
- import "../../../chunk-NMQP6WEB.mjs";
4
+ import "../../../chunk-LOFMB5G3.mjs";
5
5
 
6
6
  // src/generators/preset/untyped.ts
7
7
  import { defineUntypedSchema } from "untyped";
@@ -8,7 +8,7 @@ import "../../../chunk-Y4TAQWND.mjs";
8
8
  import "../../../chunk-V44DYGWX.mjs";
9
9
  import "../../../chunk-VGJEUOUN.mjs";
10
10
  import "../../../chunk-C26A6BXG.mjs";
11
- import "../../../chunk-NMQP6WEB.mjs";
11
+ import "../../../chunk-LOFMB5G3.mjs";
12
12
  export {
13
13
  generator_default as default,
14
14
  releaseVersionGeneratorFn