@storm-software/workspace-tools 1.151.0 → 1.153.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.
- package/CHANGELOG.md +21 -0
- package/README.md +4 -4
- package/index.js +9 -3
- package/meta.json +1 -1
- package/package.json +6 -2
- package/packages/build-tools/src/build/ts-build.d.ts +1 -1
- package/packages/build-tools/src/config/get-rolldown-config.d.ts +1 -1
- package/packages/workspace-tools/src/executors/tsup/executor.d.ts +1 -1
- package/packages/workspace-tools/src/executors/tsup-browser/executor.d.ts +2 -1
- package/packages/workspace-tools/src/executors/tsup-neutral/executor.d.ts +1 -1
- package/packages/workspace-tools/src/executors/tsup-node/executor.d.ts +2 -1
- package/packages/workspace-tools/src/executors/typia/executor.d.ts +1 -1
- package/src/executors/tsup/schema.json +3 -3
- package/src/executors/tsup-browser/executor.js +4 -2
- package/src/executors/tsup-neutral/executor.js +1 -3
- package/src/executors/tsup-node/executor.js +4 -2
- package/src/executors/typia/executor.js +104824 -104824
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## 1.153.0 (2024-08-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
- **storm-ops:** Update the workflows to send requests to Telegram ([65332dd0](https://github.com/storm-software/storm-ops/commit/65332dd0))
|
|
7
|
+
|
|
8
|
+
- **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))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- **workspace-tools:** Resolve issue with call signature to executors ([36ad985a](https://github.com/storm-software/storm-ops/commit/36ad985a))
|
|
14
|
+
|
|
15
|
+
## 1.152.0 (2024-08-04)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
- **config:** Added the `docs` and `licensing` options to the Storm configuration ([c867efe1](https://github.com/storm-software/storm-ops/commit/c867efe1))
|
|
21
|
+
|
|
1
22
|
## 1.151.0 (2024-08-03)
|
|
2
23
|
|
|
3
24
|
|
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -201,9 +201,9 @@ The following executor options are available:
|
|
|
201
201
|
| shims | `boolean` | Should the build process add shims for node.js modules that are not available in the browser? | |
|
|
202
202
|
| define | `object` | Define global constants that can be used in the source code. The value will be converted into a stringified JSON. | |
|
|
203
203
|
| env | `object` | Define environment variables that can be used in the source code. The value will be converted into a stringified JSON. | |
|
|
204
|
-
| apiReport | `boolean` | Should API Extractor generate an API Report file. |
|
|
205
|
-
| docModel | `boolean` | Should API Extractor generate an Doc Model markdown file. |
|
|
206
|
-
| tsdocMetadata | `boolean` | Should API Extractor generate an TSDoc Metadata file. |
|
|
204
|
+
| apiReport | `boolean` | Should API Extractor generate an API Report file. | |
|
|
205
|
+
| docModel | `boolean` | Should API Extractor generate an Doc Model markdown file. | |
|
|
206
|
+
| tsdocMetadata | `boolean` | Should API Extractor generate an TSDoc Metadata file. | |
|
|
207
207
|
| options | `object` | Additional options to pass to tsup. See <https://paka.dev/npm/tsup@7.2.0/api#d35d54aca71eb26e>. | |
|
|
208
208
|
| plugins | `object[]` | List of ESBuild plugins to use during processing | `[]` |
|
|
209
209
|
|
package/index.js
CHANGED
|
@@ -617192,6 +617192,9 @@ var executor_default3 = withRunExecutor(
|
|
|
617192
617192
|
}
|
|
617193
617193
|
);
|
|
617194
617194
|
|
|
617195
|
+
// packages/workspace-tools/src/executors/tsup-browser/executor.ts
|
|
617196
|
+
var import_build_tools2 = require("@storm-software/build-tools");
|
|
617197
|
+
|
|
617195
617198
|
// packages/workspace-tools/src/executors/tsup/executor.ts
|
|
617196
617199
|
var import_build_tools = require("@storm-software/build-tools");
|
|
617197
617200
|
async function tsupExecutorFn(options, context, config) {
|
|
@@ -617225,14 +617228,15 @@ var executor_default4 = withRunExecutor(
|
|
|
617225
617228
|
);
|
|
617226
617229
|
|
|
617227
617230
|
// packages/workspace-tools/src/executors/tsup-browser/executor.ts
|
|
617228
|
-
var import_build_tools2 = require("@storm-software/build-tools");
|
|
617229
617231
|
var tsupBrowserBuildExecutorFn = (options, context, config) => {
|
|
617230
617232
|
return tsupExecutorFn(
|
|
617231
617233
|
{
|
|
617232
617234
|
...options,
|
|
617233
617235
|
platform: "browser",
|
|
617234
617236
|
banner: (0, import_build_tools2.getFileBanner)(
|
|
617235
|
-
context.projectName ? context.projectName.split(/(?=[A-Z])|[\.\-\s_]/).map((s2) => s2.trim()).filter((s2) => !!s2).map(
|
|
617237
|
+
context.projectName ? context.projectName.split(/(?=[A-Z])|[\.\-\s_]/).map((s2) => s2.trim()).filter((s2) => !!s2).map(
|
|
617238
|
+
(s2) => s2 ? s2.toUpperCase()[0] + s2.toLowerCase().slice(1) : ""
|
|
617239
|
+
).join(" ") : "TypeScript (Browser Platforms)"
|
|
617236
617240
|
),
|
|
617237
617241
|
define: {
|
|
617238
617242
|
...options.define
|
|
@@ -617319,7 +617323,9 @@ var tsupNodeBuildExecutorFn = (options, context, config) => {
|
|
|
617319
617323
|
...options,
|
|
617320
617324
|
platform: "node",
|
|
617321
617325
|
banner: (0, import_build_tools4.getFileBanner)(
|
|
617322
|
-
context.projectName ? context.projectName.split(/(?=[A-Z])|[\.\-\s_]/).map((s2) => s2.trim()).filter((s2) => !!s2).map(
|
|
617326
|
+
context.projectName ? context.projectName.split(/(?=[A-Z])|[\.\-\s_]/).map((s2) => s2.trim()).filter((s2) => !!s2).map(
|
|
617327
|
+
(s2) => s2 ? s2.toUpperCase()[0] + s2.toLowerCase().slice(1) : ""
|
|
617328
|
+
).join(" ") : "TypeScript (NodeJs Platform)"
|
|
617323
617329
|
),
|
|
617324
617330
|
define: {
|
|
617325
617331
|
...options.define
|