@storm-software/workspace-tools 1.39.0 → 1.40.1
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 +2 -1
- package/index.js +133 -197
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +38 -72
- package/src/executors/tsup/executor.js +94 -141
- package/src/executors/tsup-browser/executor.js +99 -152
- package/src/executors/tsup-neutral/executor.js +96 -142
- package/src/executors/tsup-node/executor.js +95 -141
- package/src/generators/browser-library/generator.js +35 -49
- package/src/generators/config-schema/generator.js +17 -31
- package/src/generators/neutral-library/generator.js +35 -49
- package/src/generators/node-library/generator.js +35 -49
- package/src/generators/preset/generator.js +36 -55
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
# [1.40.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.39.0...workspace-tools-v1.40.0) (2024-01-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **storm-ops:** Added missing dependencies ([4ab8aee](https://github.com/storm-software/storm-ops/commit/4ab8aeeab3b7ca4610a3ef0adb31332688c8346a))
|
|
7
|
+
* **workspace-tools:** Resolved issue with typescript import ([3d63fbc](https://github.com/storm-software/storm-ops/commit/3d63fbc783d7549276cd89df383a15e2808b8ecb))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **git-tools:** Re-added the Git hooks to drive workspace processing ([24311bf](https://github.com/storm-software/storm-ops/commit/24311bfde1becaba5573c4a55d1a6d68e84eb4fb))
|
|
13
|
+
* **linting-tools:** Added Typia compiler transformer to tsup build ([5b39221](https://github.com/storm-software/storm-ops/commit/5b39221dedcc63c21b15f653f56efb4f5cf20989))
|
|
14
|
+
|
|
15
|
+
# [1.39.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.38.1...workspace-tools-v1.39.0) (2024-01-13)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* **workspace-tools:** Added Typia compiler transformer to tsup build ([2b5645f](https://github.com/storm-software/storm-ops/commit/2b5645f8603ba06437b7311dc0652be5927e3168))
|
|
21
|
+
|
|
1
22
|
## [1.38.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.38.0...workspace-tools-v1.38.1) (2024-01-12)
|
|
2
23
|
|
|
3
24
|
|
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
|
<h3 align="center" bold="true">⚠️ <b>Attention</b> ⚠️ This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.</h3><br />
|
|
@@ -105,6 +105,7 @@ The following executor options are available:
|
|
|
105
105
|
| includeSrc | `boolean` | Should the source files be added to the distribution folder in an \`src\` directory. | |
|
|
106
106
|
| metafile | `boolean` | Should a meta file be created for the build package | |
|
|
107
107
|
| emitOnAll | `boolean` | Should each file contained in the package be emitted individually. | |
|
|
108
|
+
| skipTypia | `boolean` | Should the typia schema transformation process be skipped. | |
|
|
108
109
|
| generatePackageJson | `boolean` | Should a package.json file be generated in the output folder or should the existing one be copied in. | `true` |
|
|
109
110
|
| splitting | `boolean` | Should the build process preform \*code-splitting\*? | `true` |
|
|
110
111
|
| treeshake | `boolean` | Should the build process \*tree-shake\* to remove unused code? | `true` |
|