@storm-software/workspace-tools 1.25.0 → 1.26.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [1.25.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.24.2...workspace-tools-v1.25.0) (2023-12-11)
2
+
3
+
4
+ ### Features
5
+
6
+ * **workspace-tools:** Added the `generatePackageJson` option to tsup build ([c067c9b](https://github.com/storm-software/storm-ops/commit/c067c9baaf639b8e508e5fdc2789da2f8378c4b8))
7
+
1
8
  ## [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
9
 
3
10
 
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: true,
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: true,
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: false,
117371
+ shims,
117369
117372
  external,
117370
117373
  platform: "browser",
117371
117374
  banner,