@storm-software/workspace-tools 1.31.2 → 1.31.4
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 +2 -2
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +2 -2
- package/src/executors/tsup/schema.json +1 -1
- package/src/executors/tsup-browser/executor.js +2 -2
- package/src/executors/tsup-neutral/executor.js +2 -2
- package/src/executors/tsup-node/executor.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.31.3](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.31.2...workspace-tools-v1.31.3) (2023-12-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Set default value of `emitOnAll` build option to `false` for now ([7627ca8](https://github.com/storm-software/storm-ops/commit/7627ca8641bd80b2d570db7a70108f02c98ae271))
|
|
7
|
+
|
|
8
|
+
## [1.31.2](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.31.1...workspace-tools-v1.31.2) (2023-12-17)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Ensure dev dependencies are handled correctly in built package.json ([fbd78d2](https://github.com/storm-software/storm-ops/commit/fbd78d2bdc95093436ef0281529a1bc1d409fe35))
|
|
14
|
+
|
|
1
15
|
## [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
16
|
|
|
3
17
|
|
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
|
|
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 ??=
|
|
117523
|
+
options.emitOnAll ??= false;
|
|
117524
117524
|
options.define ??= {};
|
|
117525
117525
|
options.env ??= {};
|
|
117526
117526
|
options.verbose ??= !!process.env.CI;
|
package/package.json
CHANGED
|
@@ -116962,7 +116962,7 @@ ${externalDependencies.map((dep) => {
|
|
|
116962
116962
|
if (options.entry) {
|
|
116963
116963
|
entryPoints.push(options.entry);
|
|
116964
116964
|
}
|
|
116965
|
-
if (options.emitOnAll
|
|
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 ??=
|
|
117284
|
+
options.emitOnAll ??= false;
|
|
117285
117285
|
options.define ??= {};
|
|
117286
117286
|
options.env ??= {};
|
|
117287
117287
|
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
|
|
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 ??=
|
|
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
|
|
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 ??=
|
|
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
|
|
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 ??=
|
|
117315
|
+
options.emitOnAll ??= false;
|
|
117316
117316
|
options.define ??= {};
|
|
117317
117317
|
options.env ??= {};
|
|
117318
117318
|
options.verbose ??= !!process.env.CI;
|