@storm-software/workspace-tools 1.155.0 → 1.157.0

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 (131) hide show
  1. package/CHANGELOG.md +160 -126
  2. package/README.md +2 -1
  3. package/config/nx.json +3 -3
  4. package/declarations.d.ts +4 -13
  5. package/index.js +2395 -2291
  6. package/meta.json +1 -1
  7. package/package.json +7 -7
  8. package/src/base/index.js +3558 -3512
  9. package/src/executors/cargo-publish/executor.js +1 -1
  10. package/src/executors/clean-package/executor.js +68061 -68048
  11. package/src/executors/npm-publish/executor.js +1 -1
  12. package/src/executors/rolldown/executor.js +5482 -5465
  13. package/src/executors/size-limit/executor.js +5482 -5465
  14. package/src/executors/tsup/executor.js +5482 -5465
  15. package/src/executors/tsup-browser/executor.js +5482 -5465
  16. package/src/executors/tsup-browser/schema.d.ts +4 -1
  17. package/src/executors/tsup-neutral/executor.js +5482 -5465
  18. package/src/executors/tsup-neutral/schema.d.ts +4 -1
  19. package/src/executors/tsup-node/executor.js +5482 -5465
  20. package/src/executors/tsup-node/schema.d.ts +4 -1
  21. package/src/executors/typia/executor.js +5482 -5465
  22. package/src/executors/unbuild/executor.js +5482 -5465
  23. package/src/generators/browser-library/generator.js +3550 -3507
  24. package/src/generators/config-schema/generator.js +302 -287
  25. package/src/generators/init/init.js +3 -3
  26. package/src/generators/neutral-library/generator.js +3550 -3507
  27. package/src/generators/node-library/generator.js +3550 -3507
  28. package/src/generators/preset/generator.js +5484 -5469
  29. package/{packages/workspace-tools/src → src}/generators/release-version/generator.d.ts +3 -8
  30. package/src/generators/release-version/generator.js +6050 -6076
  31. package/src/generators/release-version/schema.d.ts +2 -1
  32. package/src/generators/release-version/schema.json +4 -15
  33. package/{packages/workspace-tools/src → src}/plugins/rust/cargo-toml.d.ts +5 -1
  34. package/src/plugins/rust/index.js +21 -5
  35. package/src/plugins/typescript/index.js +13 -4
  36. package/src/plugins/typescript/project-config.d.ts +6 -0
  37. package/src/utils/index.js +4522 -4499
  38. package/{packages/workspace-tools/src → src}/utils/lock-file.d.ts +1 -1
  39. package/src/utils/lock-file.js +9 -5
  40. package/packages/build-tools/src/build/index.d.ts +0 -3
  41. package/packages/build-tools/src/build/rolldown.d.ts +0 -20
  42. package/packages/build-tools/src/build/ts-build.d.ts +0 -20
  43. package/packages/build-tools/src/build/unbuild.d.ts +0 -20
  44. package/packages/build-tools/src/cli/index.d.ts +0 -2
  45. package/packages/build-tools/src/config/browser-config.d.ts +0 -2
  46. package/packages/build-tools/src/config/default-config.d.ts +0 -2
  47. package/packages/build-tools/src/config/get-config.d.ts +0 -2
  48. package/packages/build-tools/src/config/get-rolldown-config.d.ts +0 -6
  49. package/packages/build-tools/src/config/get-unbuild-config.d.ts +0 -6
  50. package/packages/build-tools/src/config/index.d.ts +0 -7
  51. package/packages/build-tools/src/config/neutral-config.d.ts +0 -2
  52. package/packages/build-tools/src/config/node-config.d.ts +0 -3
  53. package/packages/build-tools/src/index.d.ts +0 -6
  54. package/packages/build-tools/src/plugins/analyze-plugin.d.ts +0 -4
  55. package/packages/build-tools/src/plugins/index.d.ts +0 -4
  56. package/packages/build-tools/src/plugins/swc-plugin.d.ts +0 -2
  57. package/packages/build-tools/src/plugins/ts-resolve.d.ts +0 -6
  58. package/packages/build-tools/src/plugins/type-definitions.d.ts +0 -7
  59. package/packages/build-tools/src/types.d.ts +0 -213
  60. package/packages/build-tools/src/utils/apply-default-options.d.ts +0 -6
  61. package/packages/build-tools/src/utils/generate-package-json.d.ts +0 -7
  62. package/packages/build-tools/src/utils/get-entry-points.d.ts +0 -3
  63. package/packages/build-tools/src/utils/get-file-banner.d.ts +0 -8
  64. package/packages/build-tools/src/utils/get-project-deps.d.ts +0 -5
  65. package/packages/build-tools/src/utils/index.d.ts +0 -7
  66. package/packages/build-tools/src/utils/out-extension.d.ts +0 -8
  67. package/packages/build-tools/src/utils/run-tsup-build.d.ts +0 -3
  68. package/packages/build-tools/src/utils/task-graph.d.ts +0 -6
  69. package/packages/config/src/constants.d.ts +0 -3
  70. package/packages/config/src/define-config.d.ts +0 -174
  71. package/packages/config/src/index.d.ts +0 -12
  72. package/packages/config/src/schema.d.ts +0 -1915
  73. package/packages/config/src/types.d.ts +0 -23
  74. package/packages/config-tools/src/config-file/get-config-file.d.ts +0 -16
  75. package/packages/config-tools/src/config-file/index.d.ts +0 -1
  76. package/packages/config-tools/src/create-storm-config.d.ts +0 -26
  77. package/packages/config-tools/src/env/get-env.d.ts +0 -15
  78. package/packages/config-tools/src/env/index.d.ts +0 -2
  79. package/packages/config-tools/src/env/set-env.d.ts +0 -14
  80. package/packages/config-tools/src/index.d.ts +0 -13
  81. package/packages/config-tools/src/types.d.ts +0 -33
  82. package/packages/config-tools/src/utilities/apply-workspace-tokens.d.ts +0 -4
  83. package/packages/config-tools/src/utilities/chalk.d.ts +0 -23
  84. package/packages/config-tools/src/utilities/correct-paths.d.ts +0 -1
  85. package/packages/config-tools/src/utilities/file-path-utils.d.ts +0 -2
  86. package/packages/config-tools/src/utilities/find-up.d.ts +0 -4
  87. package/packages/config-tools/src/utilities/find-workspace-root.d.ts +0 -14
  88. package/packages/config-tools/src/utilities/get-default-config.d.ts +0 -15
  89. package/packages/config-tools/src/utilities/get-log-level.d.ts +0 -15
  90. package/packages/config-tools/src/utilities/index.d.ts +0 -10
  91. package/packages/config-tools/src/utilities/logger.d.ts +0 -74
  92. package/packages/config-tools/src/utilities/process-handler.d.ts +0 -4
  93. package/packages/config-tools/src/utilities/run.d.ts +0 -18
  94. package/packages/workspace-tools/src/plugins/typescript/project-config.d.ts +0 -33
  95. package/{packages/workspace-tools/index.d.ts → index.d.ts} +0 -0
  96. package/{packages/workspace-tools/src → src}/base/base-executor.d.ts +0 -0
  97. package/{packages/workspace-tools/src → src}/base/base-generator.d.ts +0 -0
  98. package/{packages/workspace-tools/src → src}/base/index.d.ts +0 -0
  99. package/{packages/workspace-tools/src → src}/base/typescript-library-generator.d.ts +0 -0
  100. package/{packages/workspace-tools/src → src}/executors/cargo-publish/executor.d.ts +0 -0
  101. package/{packages/workspace-tools/src → src}/executors/clean-package/constants.d.ts +0 -0
  102. package/{packages/workspace-tools/src → src}/executors/clean-package/executor.d.ts +0 -0
  103. package/{packages/workspace-tools/src → src}/executors/clean-package/types.d.ts +0 -0
  104. package/{packages/workspace-tools/src → src}/executors/clean-package/utils.d.ts +0 -0
  105. package/{packages/workspace-tools/src → src}/executors/npm-publish/executor.d.ts +0 -0
  106. package/{packages/workspace-tools/src → src}/executors/rolldown/executor.d.ts +0 -0
  107. package/{packages/workspace-tools/src → src}/executors/size-limit/executor.d.ts +0 -0
  108. package/{packages/workspace-tools/src → src}/executors/tsup/executor.d.ts +0 -0
  109. package/{packages/workspace-tools/src → src}/executors/tsup-browser/executor.d.ts +0 -0
  110. package/{packages/workspace-tools/src → src}/executors/tsup-neutral/executor.d.ts +0 -0
  111. package/{packages/workspace-tools/src → src}/executors/tsup-node/executor.d.ts +0 -0
  112. package/{packages/workspace-tools/src → src}/executors/typia/executor.d.ts +0 -0
  113. package/{packages/workspace-tools/src → src}/executors/unbuild/executor.d.ts +0 -0
  114. package/{packages/workspace-tools/src → src}/generators/browser-library/generator.d.ts +0 -0
  115. package/{packages/workspace-tools/src → src}/generators/config-schema/generator.d.ts +0 -0
  116. package/{packages/workspace-tools/src → src}/generators/init/init.d.ts +0 -0
  117. package/{packages/workspace-tools/src → src}/generators/neutral-library/generator.d.ts +0 -0
  118. package/{packages/workspace-tools/src → src}/generators/node-library/generator.d.ts +0 -0
  119. package/{packages/workspace-tools/src → src}/generators/preset/generator.d.ts +0 -0
  120. package/{packages/workspace-tools/src → src}/plugins/rust/index.d.ts +0 -0
  121. package/{packages/workspace-tools/src → src}/plugins/typescript/index.d.ts +0 -0
  122. package/{packages/workspace-tools/src → src}/utils/apply-workspace-tokens.d.ts +0 -0
  123. package/{packages/workspace-tools/src → src}/utils/cargo.d.ts +0 -0
  124. package/{packages/workspace-tools/src → src}/utils/create-cli-options.d.ts +0 -0
  125. package/{packages/workspace-tools/src → src}/utils/get-project-configurations.d.ts +0 -0
  126. package/{packages/workspace-tools/src → src}/utils/index.d.ts +5 -5
  127. /package/{packages/workspace-tools/src → src}/utils/project-tags.d.ts +0 -0
  128. /package/{packages/workspace-tools/src → src}/utils/run-tsup-build.d.ts +0 -0
  129. /package/{packages/workspace-tools/src → src}/utils/toml.d.ts +0 -0
  130. /package/{packages/workspace-tools/src → src}/utils/typia-transform.d.ts +0 -0
  131. /package/{packages/workspace-tools/src → src}/utils/versions.d.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -1,414 +1,448 @@
1
- ## 1.155.0 (2024-08-19)
1
+ ## 1.157.0 (2024-08-23)
2
+
3
+ ### Features
2
4
 
5
+ - **k8s-tools:** Initial code check-in of k8s tools
6
+ ([cac95faa](https://github.com/storm-software/storm-ops/commit/cac95faa))
7
+
8
+ ## 1.156.0 (2024-08-22)
3
9
 
4
10
  ### Features
5
11
 
6
- - **terraform-modules:** Add `region` to resource name ([03291fe8](https://github.com/storm-software/storm-ops/commit/03291fe8))
12
+ - **workspace-tools:** Added the `includeApps` option to the Rust and TypeScript
13
+ plugins
14
+ ([7bd309f6](https://github.com/storm-software/storm-ops/commit/7bd309f6))
7
15
 
8
- ## 1.154.0 (2024-08-19)
16
+ ## 1.155.0 (2024-08-19)
17
+
18
+ ### Features
9
19
 
20
+ - **terraform-modules:** Add `region` to resource name
21
+ ([03291fe8](https://github.com/storm-software/storm-ops/commit/03291fe8))
22
+
23
+ ## 1.154.0 (2024-08-19)
10
24
 
11
25
  ### Features
12
26
 
13
- - **workspace-tools:** Added the `build-local` target to the base `nx.json` file ([a3afe7e8](https://github.com/storm-software/storm-ops/commit/a3afe7e8))
27
+ - **workspace-tools:** Added the `build-local` target to the base `nx.json` file
28
+ ([a3afe7e8](https://github.com/storm-software/storm-ops/commit/a3afe7e8))
14
29
 
15
30
  ## 1.153.0 (2024-08-09)
16
31
 
17
-
18
32
  ### Features
19
33
 
20
- - **storm-ops:** Update the workflows to send requests to Telegram ([65332dd0](https://github.com/storm-software/storm-ops/commit/65332dd0))
21
-
22
- - **workspace-tools:** Added the `.env.keys` file to the ignored list to support the `dotenvx` package ([1394d51c](https://github.com/storm-software/storm-ops/commit/1394d51c))
34
+ - **storm-ops:** Update the workflows to send requests to Telegram
35
+ ([65332dd0](https://github.com/storm-software/storm-ops/commit/65332dd0))
23
36
 
37
+ - **workspace-tools:** Added the `.env.keys` file to the ignored list to support
38
+ the `dotenvx` package
39
+ ([1394d51c](https://github.com/storm-software/storm-ops/commit/1394d51c))
24
40
 
25
41
  ### Bug Fixes
26
42
 
27
- - **workspace-tools:** Resolve issue with call signature to executors ([36ad985a](https://github.com/storm-software/storm-ops/commit/36ad985a))
43
+ - **workspace-tools:** Resolve issue with call signature to executors
44
+ ([36ad985a](https://github.com/storm-software/storm-ops/commit/36ad985a))
28
45
 
29
46
  ## 1.152.0 (2024-08-04)
30
47
 
31
-
32
48
  ### Features
33
49
 
34
- - **config:** Added the `docs` and `licensing` options to the Storm configuration ([c867efe1](https://github.com/storm-software/storm-ops/commit/c867efe1))
50
+ - **config:** Added the `docs` and `licensing` options to the Storm
51
+ configuration
52
+ ([c867efe1](https://github.com/storm-software/storm-ops/commit/c867efe1))
35
53
 
36
54
  ## 1.151.0 (2024-08-03)
37
55
 
38
-
39
56
  ### Features
40
57
 
41
- - **eslint:** Ignore `prefer-nullish-coalescing` for strings ([dbae2a58](https://github.com/storm-software/storm-ops/commit/dbae2a58))
58
+ - **eslint:** Ignore `prefer-nullish-coalescing` for strings
59
+ ([dbae2a58](https://github.com/storm-software/storm-ops/commit/dbae2a58))
42
60
 
43
61
  ## 1.150.0 (2024-08-03)
44
62
 
45
-
46
63
  ### Features
47
64
 
48
- - **build-tools:** Add back experimental DTS option to TSUP ([4fe9652b](https://github.com/storm-software/storm-ops/commit/4fe9652b))
65
+ - **build-tools:** Add back experimental DTS option to TSUP
66
+ ([4fe9652b](https://github.com/storm-software/storm-ops/commit/4fe9652b))
49
67
 
50
68
  ## 1.149.0 (2024-08-03)
51
69
 
52
-
53
70
  ### Features
54
71
 
55
- - **storm-ops:** Upgrade workspace's Nx package dependencies ([5f31f734](https://github.com/storm-software/storm-ops/commit/5f31f734))
72
+ - **storm-ops:** Upgrade workspace's Nx package dependencies
73
+ ([5f31f734](https://github.com/storm-software/storm-ops/commit/5f31f734))
56
74
 
57
75
  ## 1.148.0 (2024-08-03)
58
76
 
59
-
60
77
  ### Features
61
78
 
62
- - **build-tools:** Add tsup build's rollup helpers ([27ecd4e6](https://github.com/storm-software/storm-ops/commit/27ecd4e6))
63
-
79
+ - **build-tools:** Add tsup build's rollup helpers
80
+ ([27ecd4e6](https://github.com/storm-software/storm-ops/commit/27ecd4e6))
64
81
 
65
82
  ### Bug Fixes
66
83
 
67
- - **build-tools:** Resolve issue with invalid return paths ([0f9f5b1f](https://github.com/storm-software/storm-ops/commit/0f9f5b1f))
84
+ - **build-tools:** Resolve issue with invalid return paths
85
+ ([0f9f5b1f](https://github.com/storm-software/storm-ops/commit/0f9f5b1f))
68
86
 
69
87
  ## 1.147.1 (2024-08-03)
70
88
 
71
-
72
89
  ### Bug Fixes
73
90
 
74
- - **build-tools:** Resolved issue with the entry name parameter in unbuild config ([f5e5dbdd](https://github.com/storm-software/storm-ops/commit/f5e5dbdd))
91
+ - **build-tools:** Resolved issue with the entry name parameter in unbuild
92
+ config
93
+ ([f5e5dbdd](https://github.com/storm-software/storm-ops/commit/f5e5dbdd))
75
94
 
76
95
  ## 1.147.0 (2024-08-02)
77
96
 
78
-
79
97
  ### Features
80
98
 
81
- - **build-tools:** Update the unbuild configuration to get exports from `package.json` files ([bb2fc78f](https://github.com/storm-software/storm-ops/commit/bb2fc78f))
99
+ - **build-tools:** Update the unbuild configuration to get exports from
100
+ `package.json` files
101
+ ([bb2fc78f](https://github.com/storm-software/storm-ops/commit/bb2fc78f))
82
102
 
83
103
  ## 1.146.0 (2024-08-02)
84
104
 
85
-
86
105
  ### Features
87
106
 
88
- - **terraform-tools:** Initial check-in of project code ([c4ef4810](https://github.com/storm-software/storm-ops/commit/c4ef4810))
107
+ - **terraform-tools:** Initial check-in of project code
108
+ ([c4ef4810](https://github.com/storm-software/storm-ops/commit/c4ef4810))
89
109
 
90
110
  ## 1.145.0 (2024-08-02)
91
111
 
92
-
93
112
  ### Features
94
113
 
95
- - **eslint:** Reformatted the banner string whitespace ([2df75cbb](https://github.com/storm-software/storm-ops/commit/2df75cbb))
96
-
97
- - **tsconfig:** Added `moduleResolution` to the base tsconfig file ([6ed67bbc](https://github.com/storm-software/storm-ops/commit/6ed67bbc))
114
+ - **eslint:** Reformatted the banner string whitespace
115
+ ([2df75cbb](https://github.com/storm-software/storm-ops/commit/2df75cbb))
98
116
 
117
+ - **tsconfig:** Added `moduleResolution` to the base tsconfig file
118
+ ([6ed67bbc](https://github.com/storm-software/storm-ops/commit/6ed67bbc))
99
119
 
100
120
  ### Bug Fixes
101
121
 
102
- - **build-tools:** Remove the unused variables in the updated code ([b01c4999](https://github.com/storm-software/storm-ops/commit/b01c4999))
122
+ - **build-tools:** Remove the unused variables in the updated code
123
+ ([b01c4999](https://github.com/storm-software/storm-ops/commit/b01c4999))
103
124
 
104
125
  ## 1.144.0 (2024-08-02)
105
126
 
106
-
107
127
  ### Features
108
128
 
109
- - **eslint:** Added the `name` and `banner` options to format banner from preset ([ee542ed6](https://github.com/storm-software/storm-ops/commit/ee542ed6))
129
+ - **eslint:** Added the `name` and `banner` options to format banner from preset
130
+ ([ee542ed6](https://github.com/storm-software/storm-ops/commit/ee542ed6))
110
131
 
111
132
  ## 1.143.1 (2024-08-02)
112
133
 
113
-
114
134
  ### Bug Fixes
115
135
 
116
- - **eslint:** Resolve issue with duplicate plugins ([23c09494](https://github.com/storm-software/storm-ops/commit/23c09494))
136
+ - **eslint:** Resolve issue with duplicate plugins
137
+ ([23c09494](https://github.com/storm-software/storm-ops/commit/23c09494))
117
138
 
118
139
  ## 1.143.0 (2024-08-02)
119
140
 
120
-
121
141
  ### Features
122
142
 
123
- - **eslint:** Added typing file for ESLint rules used by preset ([821637e2](https://github.com/storm-software/storm-ops/commit/821637e2))
143
+ - **eslint:** Added typing file for ESLint rules used by preset
144
+ ([821637e2](https://github.com/storm-software/storm-ops/commit/821637e2))
124
145
 
125
146
  ## 1.142.0 (2024-08-02)
126
147
 
127
-
128
148
  ### Features
129
149
 
130
- - **eslint:** Added a banner with `__filename` and `__dirname` to the distribution ([594c0e9a](https://github.com/storm-software/storm-ops/commit/594c0e9a))
150
+ - **eslint:** Added a banner with `__filename` and `__dirname` to the
151
+ distribution
152
+ ([594c0e9a](https://github.com/storm-software/storm-ops/commit/594c0e9a))
131
153
 
132
154
  ## 1.141.0 (2024-08-02)
133
155
 
134
-
135
156
  ### Features
136
157
 
137
- - **eslint:** Update the build process to include the preset declaration file ([1b5fe953](https://github.com/storm-software/storm-ops/commit/1b5fe953))
158
+ - **eslint:** Update the build process to include the preset declaration file
159
+ ([1b5fe953](https://github.com/storm-software/storm-ops/commit/1b5fe953))
138
160
 
139
161
  ## 1.140.0 (2024-08-02)
140
162
 
141
-
142
163
  ### Features
143
164
 
144
- - **eslint:** Improved the logic around determining the banner ([4bbb321d](https://github.com/storm-software/storm-ops/commit/4bbb321d))
165
+ - **eslint:** Improved the logic around determining the banner
166
+ ([4bbb321d](https://github.com/storm-software/storm-ops/commit/4bbb321d))
145
167
 
146
168
  ## 1.139.1 (2024-08-01)
147
169
 
148
-
149
170
  ### Bug Fixes
150
171
 
151
- - **eslint:** Resolve issue with invalid path definition ([be930a74](https://github.com/storm-software/storm-ops/commit/be930a74))
172
+ - **eslint:** Resolve issue with invalid path definition
173
+ ([be930a74](https://github.com/storm-software/storm-ops/commit/be930a74))
152
174
 
153
175
  ## 1.139.0 (2024-08-01)
154
176
 
155
-
156
177
  ### Features
157
178
 
158
- - **eslint:** Added the `parserOptions` parameter to the preset's options ([344db07c](https://github.com/storm-software/storm-ops/commit/344db07c))
179
+ - **eslint:** Added the `parserOptions` parameter to the preset's options
180
+ ([344db07c](https://github.com/storm-software/storm-ops/commit/344db07c))
159
181
 
160
182
  ## 1.138.0 (2024-08-01)
161
183
 
162
-
163
184
  ### Features
164
185
 
165
- - **eslint:** Added JSX parser options when `react` is enabled ([2700e009](https://github.com/storm-software/storm-ops/commit/2700e009))
186
+ - **eslint:** Added JSX parser options when `react` is enabled
187
+ ([2700e009](https://github.com/storm-software/storm-ops/commit/2700e009))
166
188
 
167
189
  ## 1.137.1 (2024-08-01)
168
190
 
169
-
170
191
  ### Bug Fixes
171
192
 
172
- - **eslint:** Resolved issues with invalid TypeScript flat configuration ([88166ab1](https://github.com/storm-software/storm-ops/commit/88166ab1))
193
+ - **eslint:** Resolved issues with invalid TypeScript flat configuration
194
+ ([88166ab1](https://github.com/storm-software/storm-ops/commit/88166ab1))
173
195
 
174
196
  ## 1.137.0 (2024-08-01)
175
197
 
176
-
177
198
  ### Features
178
199
 
179
- - **eslint:** Added initial typinges for the distribution package ([5a6a9dd1](https://github.com/storm-software/storm-ops/commit/5a6a9dd1))
200
+ - **eslint:** Added initial typinges for the distribution package
201
+ ([5a6a9dd1](https://github.com/storm-software/storm-ops/commit/5a6a9dd1))
180
202
 
181
203
  ## 1.136.0 (2024-08-01)
182
204
 
183
-
184
205
  ### Features
185
206
 
186
- - **git-tools:** Ensure `.git/COMMIT_EDITMSG` exists before reading from disk ([7abae7ae](https://github.com/storm-software/storm-ops/commit/7abae7ae))
207
+ - **git-tools:** Ensure `.git/COMMIT_EDITMSG` exists before reading from disk
208
+ ([7abae7ae](https://github.com/storm-software/storm-ops/commit/7abae7ae))
187
209
 
188
210
  ## 1.135.0 (2024-08-01)
189
211
 
190
-
191
212
  ### Features
192
213
 
193
- - **git-tools:** Update `commitlint` to warn users when no commit message is provided instead of throwing errors ([04942ee2](https://github.com/storm-software/storm-ops/commit/04942ee2))
214
+ - **git-tools:** Update `commitlint` to warn users when no commit message is
215
+ provided instead of throwing errors
216
+ ([04942ee2](https://github.com/storm-software/storm-ops/commit/04942ee2))
194
217
 
195
218
  ## 1.134.3 (2024-07-31)
196
219
 
197
-
198
220
  ### Bug Fixes
199
221
 
200
- - **git-tools:** Resolved issue when `commitlint` is called without a `message` parameter ([624b24bc](https://github.com/storm-software/storm-ops/commit/624b24bc))
222
+ - **git-tools:** Resolved issue when `commitlint` is called without a `message`
223
+ parameter
224
+ ([624b24bc](https://github.com/storm-software/storm-ops/commit/624b24bc))
201
225
 
202
226
  ## 1.134.2 (2024-07-31)
203
227
 
204
-
205
228
  ### Bug Fixes
206
229
 
207
- - **build-tools:** Resolved issue iterating unbuild entry files ([17703513](https://github.com/storm-software/storm-ops/commit/17703513))
230
+ - **build-tools:** Resolved issue iterating unbuild entry files
231
+ ([17703513](https://github.com/storm-software/storm-ops/commit/17703513))
208
232
 
209
233
  ## 1.134.1 (2024-07-31)
210
234
 
211
-
212
235
  ### Bug Fixes
213
236
 
214
- - **build-tools:** Resolve issues with the output path provided to unbuild ([ee9c2353](https://github.com/storm-software/storm-ops/commit/ee9c2353))
237
+ - **build-tools:** Resolve issues with the output path provided to unbuild
238
+ ([ee9c2353](https://github.com/storm-software/storm-ops/commit/ee9c2353))
215
239
 
216
240
  ## 1.134.0 (2024-07-31)
217
241
 
218
-
219
242
  ### Features
220
243
 
221
- - **build-tools:** Added the CODEOWNERS linting tool ([63099b1b](https://github.com/storm-software/storm-ops/commit/63099b1b))
244
+ - **build-tools:** Added the CODEOWNERS linting tool
245
+ ([63099b1b](https://github.com/storm-software/storm-ops/commit/63099b1b))
222
246
 
223
247
  ## 1.133.1 (2024-07-31)
224
248
 
225
-
226
249
  ### Bug Fixes
227
250
 
228
- - **build-tools:** Remove unused plugin from unbuild ([ad8a5991](https://github.com/storm-software/storm-ops/commit/ad8a5991))
251
+ - **build-tools:** Remove unused plugin from unbuild
252
+ ([ad8a5991](https://github.com/storm-software/storm-ops/commit/ad8a5991))
229
253
 
230
254
  ## 1.133.0 (2024-07-31)
231
255
 
232
-
233
256
  ### Features
234
257
 
235
- - **create-storm-workspace:** Configure workspace to include GitHub ([eea71de7](https://github.com/storm-software/storm-ops/commit/eea71de7))
258
+ - **create-storm-workspace:** Configure workspace to include GitHub
259
+ ([eea71de7](https://github.com/storm-software/storm-ops/commit/eea71de7))
236
260
 
237
261
  ## 1.132.0 (2024-07-30)
238
262
 
239
-
240
263
  ### Features
241
264
 
242
- - **eslint:** Added the header plugin ([cc0cbbea](https://github.com/storm-software/storm-ops/commit/cc0cbbea))
265
+ - **eslint:** Added the header plugin
266
+ ([cc0cbbea](https://github.com/storm-software/storm-ops/commit/cc0cbbea))
243
267
 
244
268
  ## 1.131.0 (2024-07-28)
245
269
 
246
-
247
270
  ### Features
248
271
 
249
- - **build-tools:** Added code to include TypeScript lib declarations in bundle ([689e8a47](https://github.com/storm-software/storm-ops/commit/689e8a47))
272
+ - **build-tools:** Added code to include TypeScript lib declarations in bundle
273
+ ([689e8a47](https://github.com/storm-software/storm-ops/commit/689e8a47))
250
274
 
251
- - **build-tools:** Added the `generatePackageJson` functionality for unbuild ([218c72d4](https://github.com/storm-software/storm-ops/commit/218c72d4))
275
+ - **build-tools:** Added the `generatePackageJson` functionality for unbuild
276
+ ([218c72d4](https://github.com/storm-software/storm-ops/commit/218c72d4))
252
277
 
253
278
  ## 1.130.0 (2024-07-28)
254
279
 
255
-
256
280
  ### Features
257
281
 
258
- - **build-tools:** Added `formatPackageJson` functionality to unbuild ([6da1a518](https://github.com/storm-software/storm-ops/commit/6da1a518))
282
+ - **build-tools:** Added `formatPackageJson` functionality to unbuild
283
+ ([6da1a518](https://github.com/storm-software/storm-ops/commit/6da1a518))
259
284
 
260
285
  ## 1.129.2 (2024-07-28)
261
286
 
262
-
263
287
  ### Bug Fixes
264
288
 
265
- - **build-tools:** Split out the code to format the `package.json` file ([a47b98d5](https://github.com/storm-software/storm-ops/commit/a47b98d5))
289
+ - **build-tools:** Split out the code to format the `package.json` file
290
+ ([a47b98d5](https://github.com/storm-software/storm-ops/commit/a47b98d5))
266
291
 
267
292
  ## 1.129.1 (2024-07-26)
268
293
 
269
-
270
294
  ### Bug Fixes
271
295
 
272
- - **storm-ops:** Resolved issue with missing token in CI action ([4db79d8e](https://github.com/storm-software/storm-ops/commit/4db79d8e))
296
+ - **storm-ops:** Resolved issue with missing token in CI action
297
+ ([4db79d8e](https://github.com/storm-software/storm-ops/commit/4db79d8e))
273
298
 
274
299
  ## 1.129.0 (2024-07-24)
275
300
 
276
-
277
301
  ### Features
278
302
 
279
- - **workspace-tools:** Added the `size-limit` executor ([6ce22bab](https://github.com/storm-software/storm-ops/commit/6ce22bab))
303
+ - **workspace-tools:** Added the `size-limit` executor
304
+ ([6ce22bab](https://github.com/storm-software/storm-ops/commit/6ce22bab))
280
305
 
281
306
  ## 1.128.2 (2024-07-23)
282
307
 
283
-
284
308
  ### Bug Fixes
285
309
 
286
- - **workspace-tools:** Simplified the `namedImports` in the base Nx configuration ([2982defb](https://github.com/storm-software/storm-ops/commit/2982defb))
310
+ - **workspace-tools:** Simplified the `namedImports` in the base Nx
311
+ configuration
312
+ ([2982defb](https://github.com/storm-software/storm-ops/commit/2982defb))
287
313
 
288
- - **workspace-tools:** Add the new `namedImports` to workspace plugins ([357b9b73](https://github.com/storm-software/storm-ops/commit/357b9b73))
314
+ - **workspace-tools:** Add the new `namedImports` to workspace plugins
315
+ ([357b9b73](https://github.com/storm-software/storm-ops/commit/357b9b73))
289
316
 
290
317
  ## 1.128.1 (2024-07-23)
291
318
 
292
-
293
319
  ### Bug Fixes
294
320
 
295
- - **eslint:** Resolve issues with `json` plugin config spread ([088d498a](https://github.com/storm-software/storm-ops/commit/088d498a))
321
+ - **eslint:** Resolve issues with `json` plugin config spread
322
+ ([088d498a](https://github.com/storm-software/storm-ops/commit/088d498a))
296
323
 
297
324
  ## 1.128.0 (2024-07-23)
298
325
 
299
-
300
326
  ### Features
301
327
 
302
- - **prettier:** Export default `config.json` and `tailwindcss.json` from package ([c8711a52](https://github.com/storm-software/storm-ops/commit/c8711a52))
328
+ - **prettier:** Export default `config.json` and `tailwindcss.json` from package
329
+ ([c8711a52](https://github.com/storm-software/storm-ops/commit/c8711a52))
303
330
 
304
331
  ## 1.127.0 (2024-07-23)
305
332
 
306
-
307
333
  ### Features
308
334
 
309
- - **eslint:** Remove the `import` plugin from the preset ([6c8551ae](https://github.com/storm-software/storm-ops/commit/6c8551ae))
335
+ - **eslint:** Remove the `import` plugin from the preset
336
+ ([6c8551ae](https://github.com/storm-software/storm-ops/commit/6c8551ae))
310
337
 
311
338
  ## 1.126.0 (2024-07-22)
312
339
 
313
-
314
340
  ### Features
315
341
 
316
- - **eslint:** Update rules around handling TypeScript function returns ([a9859cd4](https://github.com/storm-software/storm-ops/commit/a9859cd4))
342
+ - **eslint:** Update rules around handling TypeScript function returns
343
+ ([a9859cd4](https://github.com/storm-software/storm-ops/commit/a9859cd4))
317
344
 
318
345
  ## 1.125.0 (2024-07-22)
319
346
 
320
-
321
347
  ### Features
322
348
 
323
- - **eslint:** Added Nx plugin to eslint preset ([1933027f](https://github.com/storm-software/storm-ops/commit/1933027f))
349
+ - **eslint:** Added Nx plugin to eslint preset
350
+ ([1933027f](https://github.com/storm-software/storm-ops/commit/1933027f))
324
351
 
325
352
  ## 1.124.0 (2024-07-22)
326
353
 
327
-
328
354
  ### Features
329
355
 
330
- - **eslint:** Add config formatter to eslint preset ([050dadcd](https://github.com/storm-software/storm-ops/commit/050dadcd))
356
+ - **eslint:** Add config formatter to eslint preset
357
+ ([050dadcd](https://github.com/storm-software/storm-ops/commit/050dadcd))
331
358
 
332
359
  ## 1.123.0 (2024-07-22)
333
360
 
334
-
335
361
  ### Features
336
362
 
337
- - **workspace-tools:** Enable distributed task execution and remote caching ([307bc05a](https://github.com/storm-software/storm-ops/commit/307bc05a))
338
-
339
- - **workspace-tools:** Improve the `nx.config` shared imports ([2b298691](https://github.com/storm-software/storm-ops/commit/2b298691))
363
+ - **workspace-tools:** Enable distributed task execution and remote caching
364
+ ([307bc05a](https://github.com/storm-software/storm-ops/commit/307bc05a))
340
365
 
366
+ - **workspace-tools:** Improve the `nx.config` shared imports
367
+ ([2b298691](https://github.com/storm-software/storm-ops/commit/2b298691))
341
368
 
342
369
  ### Bug Fixes
343
370
 
344
- - **storm-ops:** Resolved issue with cross-project typings ([aed5a357](https://github.com/storm-software/storm-ops/commit/aed5a357))
371
+ - **storm-ops:** Resolved issue with cross-project typings
372
+ ([aed5a357](https://github.com/storm-software/storm-ops/commit/aed5a357))
345
373
 
346
- - **workspace-tools:** Improve the inputs used for `build` and `release` tasks ([9887f360](https://github.com/storm-software/storm-ops/commit/9887f360))
347
-
348
- - **workspace-tools:** Resolve issues with `namedInputs` in base Nx configuration ([879fc147](https://github.com/storm-software/storm-ops/commit/879fc147))
374
+ - **workspace-tools:** Improve the inputs used for `build` and `release` tasks
375
+ ([9887f360](https://github.com/storm-software/storm-ops/commit/9887f360))
349
376
 
377
+ - **workspace-tools:** Resolve issues with `namedInputs` in base Nx
378
+ configuration
379
+ ([879fc147](https://github.com/storm-software/storm-ops/commit/879fc147))
350
380
 
351
381
  ### Continuous Integration
352
382
 
353
- - **storm-ops:** Resolve permissions issue in CI action ([2dd8c79e](https://github.com/storm-software/storm-ops/commit/2dd8c79e))
383
+ - **storm-ops:** Resolve permissions issue in CI action
384
+ ([2dd8c79e](https://github.com/storm-software/storm-ops/commit/2dd8c79e))
354
385
 
355
386
  ## 1.122.0 (2024-07-19)
356
387
 
357
-
358
388
  ### Features
359
389
 
360
- - **workspace-tools:** Added separate exports for utilities ([2e62f379](https://github.com/storm-software/storm-ops/commit/2e62f379))
361
-
390
+ - **workspace-tools:** Added separate exports for utilities
391
+ ([2e62f379](https://github.com/storm-software/storm-ops/commit/2e62f379))
362
392
 
363
393
  ### Continuous Integration
364
394
 
365
- - **storm-ops:** Track git branch in `nrwl/nx-set-shas` step ([e53ee0bc](https://github.com/storm-software/storm-ops/commit/e53ee0bc))
395
+ - **storm-ops:** Track git branch in `nrwl/nx-set-shas` step
396
+ ([e53ee0bc](https://github.com/storm-software/storm-ops/commit/e53ee0bc))
366
397
 
367
398
  ## 1.121.0 (2024-07-19)
368
399
 
369
-
370
400
  ### Features
371
401
 
372
- - **workspace-tools:** Added helper functions to support reading/writing project tags ([507b5747](https://github.com/storm-software/storm-ops/commit/507b5747))
402
+ - **workspace-tools:** Added helper functions to support reading/writing project
403
+ tags ([507b5747](https://github.com/storm-software/storm-ops/commit/507b5747))
373
404
 
374
- - **workspace-tools:** Added project tags constants and type declarations ([88cd1de2](https://github.com/storm-software/storm-ops/commit/88cd1de2))
405
+ - **workspace-tools:** Added project tags constants and type declarations
406
+ ([88cd1de2](https://github.com/storm-software/storm-ops/commit/88cd1de2))
375
407
 
376
408
  ## 1.120.0 (2024-07-19)
377
409
 
378
-
379
410
  ### Features
380
411
 
381
- - **workspace-tools:** Added tag population to the workspace plugins ([f473de63](https://github.com/storm-software/storm-ops/commit/f473de63))
412
+ - **workspace-tools:** Added tag population to the workspace plugins
413
+ ([f473de63](https://github.com/storm-software/storm-ops/commit/f473de63))
382
414
 
383
415
  ## 1.119.0 (2024-07-19)
384
416
 
385
-
386
417
  ### Features
387
418
 
388
- - **workspace-tools:** Added the `clean-package` executor ([a1763e45](https://github.com/storm-software/storm-ops/commit/a1763e45))
419
+ - **workspace-tools:** Added the `clean-package` executor
420
+ ([a1763e45](https://github.com/storm-software/storm-ops/commit/a1763e45))
389
421
 
390
- - **config:** Updated `workspaceRoot` with a default value ([5ee3fb09](https://github.com/storm-software/storm-ops/commit/5ee3fb09))
422
+ - **config:** Updated `workspaceRoot` with a default value
423
+ ([5ee3fb09](https://github.com/storm-software/storm-ops/commit/5ee3fb09))
391
424
 
392
425
  ## 1.118.0 (2024-07-19)
393
426
 
394
-
395
427
  ### Features
396
428
 
397
- - **storm-ops:** Use renovate with shared preset and update dependabot config ([b85fba8a](https://github.com/storm-software/storm-ops/commit/b85fba8a))
429
+ - **storm-ops:** Use renovate with shared preset and update dependabot config
430
+ ([b85fba8a](https://github.com/storm-software/storm-ops/commit/b85fba8a))
398
431
 
399
432
  ## 1.117.0 (2024-07-17)
400
433
 
401
-
402
434
  ### Features
403
435
 
404
- - **workspace-tools:** Include Documentation and Examples in the CHANGELOG files ([39b694b7](https://github.com/storm-software/storm-ops/commit/39b694b7))
405
-
436
+ - **workspace-tools:** Include Documentation and Examples in the CHANGELOG files
437
+ ([39b694b7](https://github.com/storm-software/storm-ops/commit/39b694b7))
406
438
 
407
439
  ### Documentation
408
440
 
409
- - **storm-ops:** Remove emojis from monorepo CHANGELOG files ([441b36b1](https://github.com/storm-software/storm-ops/commit/441b36b1))
441
+ - **storm-ops:** Remove emojis from monorepo CHANGELOG files
442
+ ([441b36b1](https://github.com/storm-software/storm-ops/commit/441b36b1))
410
443
 
411
- - **workspace-tools:** Regenerate README markdown content ([3dc140fc](https://github.com/storm-software/storm-ops/commit/3dc140fc))
444
+ - **workspace-tools:** Regenerate README markdown content
445
+ ([3dc140fc](https://github.com/storm-software/storm-ops/commit/3dc140fc))
412
446
 
413
447
  ## 2.29.0 (2024-07-17)
414
448
 
package/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-1.154.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-1.157.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -40,6 +40,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
40
40
 
41
41
  <!-- START doctoc -->
42
42
  <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
43
+
43
44
  ## Table of Contents
44
45
 
45
46
  - [Storm Workspace Tools](#storm-workspace-tools)
package/config/nx.json CHANGED
@@ -397,17 +397,17 @@
397
397
  },
398
398
  "build-base": {
399
399
  "cache": true,
400
- "dependsOn": ["clean", "format", "^build"]
400
+ "dependsOn": ["clean", "^build"]
401
401
  },
402
402
  "build-local": {
403
403
  "cache": true,
404
404
  "inputs": ["default", "^production"],
405
- "dependsOn": ["build-base", "format", "^build"]
405
+ "dependsOn": ["build-base", "^build"]
406
406
  },
407
407
  "build": {
408
408
  "cache": true,
409
409
  "inputs": ["default", "^production"],
410
- "dependsOn": ["build-base", "format", "^build"]
410
+ "dependsOn": ["build-base", "^build"]
411
411
  },
412
412
  "rebuild": {
413
413
  "cache": false,
package/declarations.d.ts CHANGED
@@ -1,18 +1,9 @@
1
- import type { StormConfig } from "@storm-software/config";
2
- import type { TsupExecutorSchema } from "./src/executors/tsup/schema";
3
- import type { GeneratorCallback, Tree, ExecutorContext } from "@nx/devkit";
4
- import type { Options } from "tsup";
5
- import type { TsupGetConfigOptions } from "./src/types";
6
- import type {
7
- Program,
8
- Diagnostic,
9
- TransformerFactory,
10
- SourceFile,
11
- ParsedCommandLine
12
- } from "typescript";
1
+ import type { ExecutorContext, GeneratorCallback, Tree } from "@nx/devkit";
13
2
  import type { NormalizedSchema } from "@nx/js/src/generators/library/library";
14
3
  import type { LibraryGeneratorSchema } from "@nx/js/src/utils/schema";
15
- import type { GetConfigParams } from "@storm-software/build-tools";
4
+ import type { StormConfig } from "@storm-software/config";
5
+ import type { Options } from "tsup";
6
+ import type { TsupExecutorSchema } from "./src/executors/tsup/schema";
16
7
 
17
8
  export interface TsupContext {
18
9
  projectRoot: string;