@storm-software/workspace-tools 1.25.0 → 1.26.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 +14 -0
- package/index.js +7 -4
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +7 -4
- package/src/executors/tsup/get-config.js +6 -3
- package/src/executors/tsup/schema.d.ts +1 -0
- package/src/executors/tsup/schema.json +5 -1
- package/src/executors/tsup-neutral/executor.js +7 -4
- package/src/executors/tsup-node/executor.js +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.26.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.25.0...workspace-tools-v1.26.0) (2023-12-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Added the `shims` option to the tsup extractor ([108ad97](https://github.com/storm-software/storm-ops/commit/108ad973641620d06ccc2e43a2e028e78a948375))
|
|
7
|
+
|
|
8
|
+
# [1.25.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.24.2...workspace-tools-v1.25.0) (2023-12-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Added the `generatePackageJson` option to tsup build ([c067c9b](https://github.com/storm-software/storm-ops/commit/c067c9baaf639b8e508e5fdc2789da2f8378c4b8))
|
|
14
|
+
|
|
1
15
|
## [1.24.2](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.24.1...workspace-tools-v1.24.2) (2023-12-11)
|
|
2
16
|
|
|
3
17
|
|
package/index.js
CHANGED
|
@@ -117184,6 +117184,7 @@ function modernConfig({
|
|
|
117184
117184
|
splitting,
|
|
117185
117185
|
treeshake,
|
|
117186
117186
|
debug = false,
|
|
117187
|
+
shims = true,
|
|
117187
117188
|
external,
|
|
117188
117189
|
banner = {},
|
|
117189
117190
|
platform = "neutral",
|
|
@@ -117222,7 +117223,7 @@ function modernConfig({
|
|
|
117222
117223
|
outDir: outputPath,
|
|
117223
117224
|
silent: !verbose,
|
|
117224
117225
|
metafile: true,
|
|
117225
|
-
shims
|
|
117226
|
+
shims,
|
|
117226
117227
|
external,
|
|
117227
117228
|
platform,
|
|
117228
117229
|
banner,
|
|
@@ -117269,6 +117270,7 @@ function legacyConfig({
|
|
|
117269
117270
|
banner = {},
|
|
117270
117271
|
platform = "neutral",
|
|
117271
117272
|
verbose = false,
|
|
117273
|
+
shims = true,
|
|
117272
117274
|
define: define2,
|
|
117273
117275
|
env: env2,
|
|
117274
117276
|
plugins,
|
|
@@ -117292,7 +117294,7 @@ function legacyConfig({
|
|
|
117292
117294
|
outDir: outputPath,
|
|
117293
117295
|
silent: !verbose,
|
|
117294
117296
|
metafile: true,
|
|
117295
|
-
shims
|
|
117297
|
+
shims,
|
|
117296
117298
|
external,
|
|
117297
117299
|
platform,
|
|
117298
117300
|
banner,
|
|
@@ -117341,6 +117343,7 @@ function workerConfig({
|
|
|
117341
117343
|
apiReport = true,
|
|
117342
117344
|
docModel = true,
|
|
117343
117345
|
tsdocMetadata = true,
|
|
117346
|
+
shims = false,
|
|
117344
117347
|
define: define2,
|
|
117345
117348
|
env: env2,
|
|
117346
117349
|
plugins,
|
|
@@ -117365,7 +117368,7 @@ function workerConfig({
|
|
|
117365
117368
|
outDir: outputPath,
|
|
117366
117369
|
silent: !verbose,
|
|
117367
117370
|
metafile: true,
|
|
117368
|
-
shims
|
|
117371
|
+
shims,
|
|
117369
117372
|
external,
|
|
117370
117373
|
platform: "browser",
|
|
117371
117374
|
banner,
|
|
@@ -117818,7 +117821,7 @@ var applyDefaultOptions = (options) => {
|
|
|
117818
117821
|
options.additionalEntryPoints ??= [];
|
|
117819
117822
|
options.assets ??= [];
|
|
117820
117823
|
options.plugins ??= [];
|
|
117821
|
-
options.includeSrc ??=
|
|
117824
|
+
options.includeSrc ??= true;
|
|
117822
117825
|
options.clean ??= true;
|
|
117823
117826
|
options.bundle ??= true;
|
|
117824
117827
|
options.debug ??= false;
|