@storm-software/workspace-tools 1.16.7 → 1.16.9
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 +14 -0
- package/README.md +4 -4
- package/index.js +1454 -1390
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +1457 -1393
- package/src/executors/tsup/get-config.js +1165 -1107
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.16.8](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.16.7...workspace-tools-v1.16.8) (2023-11-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Update tsup patch to use workspace root as base directory for api-extractor ([d8cdc3c](https://github.com/storm-software/storm-ops/commit/d8cdc3c461ac1a95a814f04e569f05a54d1a8937))
|
|
7
|
+
|
|
8
|
+
## [1.16.7](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.16.6...workspace-tools-v1.16.7) (2023-11-29)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Reduce path length of `mainEntryPointFilePath` api-extractor option ([1e747d3](https://github.com/storm-software/storm-ops/commit/1e747d34c5c9c82e00884d140632f9e725950672))
|
|
14
|
+
|
|
1
15
|
## [1.16.6](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.16.5...workspace-tools-v1.16.6) (2023-11-29)
|
|
2
16
|
|
|
3
17
|
|
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 />
|
|
@@ -66,11 +66,11 @@ The following executor options are available:
|
|
|
66
66
|
| entry | `string` | The path to the entry file, relative to project. | "{sourceRoot}/index.ts" |
|
|
67
67
|
| outputPath | `string` | The output path of the generated files. | "dist/{projectRoot}" |
|
|
68
68
|
| *tsConfig \** | `string` | The path to tsconfig file. | "tsconfig.json" |
|
|
69
|
-
| additionalEntryPoints | `string[]` | List of additional entry points. |
|
|
69
|
+
| additionalEntryPoints | `string[]` | List of additional entry points. | `[]` |
|
|
70
70
|
| external | `string[]` | Mark one or more module as external. Can use \* wildcards, such as '\*.png'. | |
|
|
71
71
|
| bundle | `boolean` | Whether to bundle the main entry point and additional entry points. Set to false to keep individual output files. | `true` |
|
|
72
72
|
| watch | `boolean` | Enable re-building when files change. | |
|
|
73
|
-
| assets | `array` | List of static assets. |
|
|
73
|
+
| assets | `array` | List of static assets. | `[]` |
|
|
74
74
|
| clean | `boolean` | Remove previous output before build. | `true` |
|
|
75
75
|
| includeSrc | `boolean` | Should the source files be added to the distribution folder in an \`src\` directory. | `true` |
|
|
76
76
|
| debug | `boolean` | Should output be unminified with source mappings. | |
|
|
@@ -83,7 +83,7 @@ The following executor options are available:
|
|
|
83
83
|
| docModel | `boolean` | Should API Extractor generate an Doc Model markdown file. | `true` |
|
|
84
84
|
| tsdocMetadata | `boolean` | Should API Extractor generate an TSDoc Metadata file. | `true` |
|
|
85
85
|
| options | `object` | Additional options to pass to tsup. See <https://paka.dev/npm/tsup@7.2.0/api#d35d54aca71eb26e>. | |
|
|
86
|
-
| plugins | `object[]` | List of ESBuild plugins to use during processing |
|
|
86
|
+
| plugins | `object[]` | List of ESBuild plugins to use during processing | `[]` |
|
|
87
87
|
|
|
88
88
|
|
|
89
89
|
**Please note:** _Option names followed by \* above are required, and must be provided to run the executor._
|