@storm-software/workspace-tools 1.36.6 → 1.37.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.36.6",
3
+ "version": "1.37.0",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
package/src/base/index.js CHANGED
@@ -47860,6 +47860,7 @@ function defaultConfig({
47860
47860
  tsconfig = "tsconfig.json",
47861
47861
  splitting,
47862
47862
  treeshake,
47863
+ format = ["cjs", "esm"],
47863
47864
  debug = false,
47864
47865
  shims = true,
47865
47866
  external,
@@ -47878,7 +47879,7 @@ function defaultConfig({
47878
47879
  return {
47879
47880
  name: "default",
47880
47881
  entry,
47881
- format: platform !== "node" ? ["cjs", "esm", "iife"] : ["cjs", "esm"],
47882
+ format,
47882
47883
  target: platform !== "node" ? [
47883
47884
  "chrome91",
47884
47885
  "firefox90",