@storm-software/workspace-tools 1.31.2 → 1.31.3

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.31.2](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.31.1...workspace-tools-v1.31.2) (2023-12-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Ensure dev dependencies are handled correctly in built package.json ([fbd78d2](https://github.com/storm-software/storm-ops/commit/fbd78d2bdc95093436ef0281529a1bc1d409fe35))
7
+
1
8
  ## [1.31.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.31.0...workspace-tools-v1.31.1) (2023-12-17)
2
9
 
3
10
 
package/index.js CHANGED
@@ -117201,7 +117201,7 @@ ${externalDependencies.map((dep) => {
117201
117201
  if (options.entry) {
117202
117202
  entryPoints.push(options.entry);
117203
117203
  }
117204
- if (options.emitOnAll !== false) {
117204
+ if (options.emitOnAll === true) {
117205
117205
  entryPoints.push((0, import_devkit2.joinPathFragments)(sourceRoot, "**/*.{ts,tsx}"));
117206
117206
  }
117207
117207
  if (options.additionalEntryPoints) {
@@ -117520,7 +117520,7 @@ var applyDefaultOptions = (options) => {
117520
117520
  options.apiReport ??= true;
117521
117521
  options.docModel ??= true;
117522
117522
  options.tsdocMetadata ??= true;
117523
- options.emitOnAll ??= true;
117523
+ options.emitOnAll ??= false;
117524
117524
  options.define ??= {};
117525
117525
  options.env ??= {};
117526
117526
  options.verbose ??= !!process.env.CI;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.31.2",
3
+ "version": "1.31.3",
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": [
@@ -116962,7 +116962,7 @@ ${externalDependencies.map((dep) => {
116962
116962
  if (options.entry) {
116963
116963
  entryPoints.push(options.entry);
116964
116964
  }
116965
- if (options.emitOnAll !== false) {
116965
+ if (options.emitOnAll === true) {
116966
116966
  entryPoints.push((0, import_devkit2.joinPathFragments)(sourceRoot, "**/*.{ts,tsx}"));
116967
116967
  }
116968
116968
  if (options.additionalEntryPoints) {
@@ -117281,7 +117281,7 @@ var applyDefaultOptions = (options) => {
117281
117281
  options.apiReport ??= true;
117282
117282
  options.docModel ??= true;
117283
117283
  options.tsdocMetadata ??= true;
117284
- options.emitOnAll ??= true;
117284
+ options.emitOnAll ??= false;
117285
117285
  options.define ??= {};
117286
117286
  options.env ??= {};
117287
117287
  options.verbose ??= !!process.env.CI;
@@ -74,7 +74,7 @@
74
74
  "emitOnAll": {
75
75
  "type": "boolean",
76
76
  "description": "Should each file contained in the package be emitted individually.",
77
- "default": true
77
+ "default": false
78
78
  },
79
79
  "generatePackageJson": {
80
80
  "type": "boolean",
@@ -116993,7 +116993,7 @@ ${externalDependencies.map((dep) => {
116993
116993
  if (options.entry) {
116994
116994
  entryPoints.push(options.entry);
116995
116995
  }
116996
- if (options.emitOnAll !== false) {
116996
+ if (options.emitOnAll === true) {
116997
116997
  entryPoints.push((0, import_devkit2.joinPathFragments)(sourceRoot, "**/*.{ts,tsx}"));
116998
116998
  }
116999
116999
  if (options.additionalEntryPoints) {
@@ -117312,7 +117312,7 @@ var applyDefaultOptions = (options) => {
117312
117312
  options.apiReport ??= true;
117313
117313
  options.docModel ??= true;
117314
117314
  options.tsdocMetadata ??= true;
117315
- options.emitOnAll ??= true;
117315
+ options.emitOnAll ??= false;
117316
117316
  options.define ??= {};
117317
117317
  options.env ??= {};
117318
117318
  options.verbose ??= !!process.env.CI;
@@ -116993,7 +116993,7 @@ ${externalDependencies.map((dep) => {
116993
116993
  if (options.entry) {
116994
116994
  entryPoints.push(options.entry);
116995
116995
  }
116996
- if (options.emitOnAll !== false) {
116996
+ if (options.emitOnAll === true) {
116997
116997
  entryPoints.push((0, import_devkit2.joinPathFragments)(sourceRoot, "**/*.{ts,tsx}"));
116998
116998
  }
116999
116999
  if (options.additionalEntryPoints) {
@@ -117312,7 +117312,7 @@ var applyDefaultOptions = (options) => {
117312
117312
  options.apiReport ??= true;
117313
117313
  options.docModel ??= true;
117314
117314
  options.tsdocMetadata ??= true;
117315
- options.emitOnAll ??= true;
117315
+ options.emitOnAll ??= false;
117316
117316
  options.define ??= {};
117317
117317
  options.env ??= {};
117318
117318
  options.verbose ??= !!process.env.CI;
@@ -116993,7 +116993,7 @@ ${externalDependencies.map((dep) => {
116993
116993
  if (options.entry) {
116994
116994
  entryPoints.push(options.entry);
116995
116995
  }
116996
- if (options.emitOnAll !== false) {
116996
+ if (options.emitOnAll === true) {
116997
116997
  entryPoints.push((0, import_devkit2.joinPathFragments)(sourceRoot, "**/*.{ts,tsx}"));
116998
116998
  }
116999
116999
  if (options.additionalEntryPoints) {
@@ -117312,7 +117312,7 @@ var applyDefaultOptions = (options) => {
117312
117312
  options.apiReport ??= true;
117313
117313
  options.docModel ??= true;
117314
117314
  options.tsdocMetadata ??= true;
117315
- options.emitOnAll ??= true;
117315
+ options.emitOnAll ??= false;
117316
117316
  options.define ??= {};
117317
117317
  options.env ??= {};
117318
117318
  options.verbose ??= !!process.env.CI;