@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.
Files changed (33) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +2 -2
  3. package/index.js +342 -441
  4. package/meta.json +1 -1
  5. package/package.json +1 -1
  6. package/src/base/index.js +27 -18
  7. package/src/executors/npm-publish/executor.js +6 -0
  8. package/src/executors/tsup/executor.js +51 -49
  9. package/src/executors/tsup/schema.d.ts +2 -2
  10. package/src/executors/tsup/schema.json +7 -23
  11. package/src/executors/tsup-browser/executor.js +51 -47
  12. package/src/executors/tsup-neutral/executor.js +51 -47
  13. package/src/executors/tsup-node/executor.js +51 -47
  14. package/src/executors/typia/executor.js +14 -11
  15. package/src/generators/browser-library/generator.js +16 -10
  16. package/src/generators/config-schema/generator.js +10 -8
  17. package/src/generators/neutral-library/generator.js +16 -10
  18. package/src/generators/node-library/generator.js +16 -10
  19. package/src/generators/preset/generator.js +5 -5
  20. package/src/generators/release-version/generator.js +32 -19
  21. package/src/utils/index.js +279 -384
  22. package/src/executors/tsup/lib.dom.d.ts +0 -28208
  23. package/src/executors/tsup/lib.dom.iterable.d.ts +0 -732
  24. package/src/executors/tsup/lib.esnext.d.ts +0 -21
  25. package/src/executors/tsup-browser/lib.dom.d.ts +0 -28208
  26. package/src/executors/tsup-browser/lib.dom.iterable.d.ts +0 -732
  27. package/src/executors/tsup-browser/lib.esnext.d.ts +0 -21
  28. package/src/executors/tsup-neutral/lib.dom.d.ts +0 -28208
  29. package/src/executors/tsup-neutral/lib.dom.iterable.d.ts +0 -732
  30. package/src/executors/tsup-neutral/lib.esnext.d.ts +0 -21
  31. package/src/executors/tsup-node/lib.dom.d.ts +0 -28208
  32. package/src/executors/tsup-node/lib.dom.iterable.d.ts +0 -732
  33. 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
- [![Version](https://img.shields.io/badge/version-1.60.19-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
19
+ [![Version](https://img.shields.io/badge/version-1.61.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
20
20
  [![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 docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&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)
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` |