@storm-software/workspace-tools 1.60.22 → 1.61.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 +24 -0
- package/README.md +2 -2
- package/index.js +342 -441
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +27 -18
- package/src/executors/npm-publish/executor.js +6 -0
- package/src/executors/tsup/executor.js +51 -49
- package/src/executors/tsup/schema.d.ts +2 -2
- package/src/executors/tsup/schema.json +7 -23
- package/src/executors/tsup-browser/executor.js +51 -47
- package/src/executors/tsup-neutral/executor.js +51 -47
- package/src/executors/tsup-node/executor.js +51 -47
- package/src/executors/typia/executor.js +14 -11
- package/src/generators/browser-library/generator.js +16 -10
- package/src/generators/config-schema/generator.js +10 -8
- package/src/generators/neutral-library/generator.js +16 -10
- package/src/generators/node-library/generator.js +16 -10
- package/src/generators/preset/generator.js +5 -5
- package/src/generators/release-version/generator.js +32 -19
- package/src/utils/index.js +279 -384
- package/src/executors/tsup/lib.dom.d.ts +0 -28208
- package/src/executors/tsup/lib.dom.iterable.d.ts +0 -732
- package/src/executors/tsup/lib.esnext.d.ts +0 -21
- package/src/executors/tsup-browser/lib.dom.d.ts +0 -28208
- package/src/executors/tsup-browser/lib.dom.iterable.d.ts +0 -732
- package/src/executors/tsup-browser/lib.esnext.d.ts +0 -21
- package/src/executors/tsup-neutral/lib.dom.d.ts +0 -28208
- package/src/executors/tsup-neutral/lib.dom.iterable.d.ts +0 -732
- package/src/executors/tsup-neutral/lib.esnext.d.ts +0 -21
- package/src/executors/tsup-node/lib.dom.d.ts +0 -28208
- package/src/executors/tsup-node/lib.dom.iterable.d.ts +0 -732
- package/src/executors/tsup-node/lib.esnext.d.ts +0 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.61.0 (2024-02-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🚀 Features
|
|
5
|
+
|
|
6
|
+
- **storm-ops:** Major updates to tsconfig values ([a3638fae](https://github.com/storm-software/storm-ops/commit/a3638fae))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.60.23 (2024-02-26)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **workspace-tools:** Added the libs declaration files ([da5a05db](https://github.com/storm-software/storm-ops/commit/da5a05db))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.60.22 (2024-02-24)
|
|
2
26
|
|
|
3
27
|
|
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
16
16
|
|
|
17
17
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.org" target="_blank">stormsoftware.org</a> to stay up to date with this developer</h3><br />
|
|
18
18
|
|
|
19
|
-
[](https://prettier.io/)
|
|
20
20
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
21
21
|
|
|
22
22
|
> [!IMPORTANT]
|
|
@@ -98,7 +98,7 @@ The following executor options are available:
|
|
|
98
98
|
| --------- | ------ | ------------- | --------- |
|
|
99
99
|
| entry | `string` | The path to the entry file, relative to project. | "{sourceRoot}/index.ts" |
|
|
100
100
|
| outputPath | `string` | The output path of the generated files. | "dist/{projectRoot}" |
|
|
101
|
-
| **tsConfig \*** | `string` | The path to the \`tsconfig.json\` file. | "tsconfig.json" |
|
|
101
|
+
| **tsConfig \*** | `string` | The path to the \`tsconfig.json\` file. | "{projectRoot}/tsconfig.json" |
|
|
102
102
|
| additionalEntryPoints | `string[]` | List of additional entry points. | `[]` |
|
|
103
103
|
| external | `string[]` | Mark one or more module as external. Can use \* wildcards, such as \*.png. | |
|
|
104
104
|
| bundle | `boolean` | Whether to bundle the main entry point and additional entry points. Set to false to keep individual output files. | `true` |
|