@storm-software/workspace-tools 1.30.1 → 1.30.2

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.30.1](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.30.0...workspace-tools-v1.30.1) (2023-12-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Resolved issue with dependency names and bad entry paths ([85b3e68](https://github.com/storm-software/storm-ops/commit/85b3e6896731be05284b8c1d9f504ef75fd0dbfc))
7
+
1
8
  # [1.30.0](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.29.0...workspace-tools-v1.30.0) (2023-12-12)
2
9
 
3
10
 
package/index.js CHANGED
@@ -117518,7 +117518,7 @@ ${Object.keys(options).map(
117518
117518
  output: "."
117519
117519
  });
117520
117520
  }
117521
- if (options.includeSrc !== false) {
117521
+ if (options.includeSrc === true) {
117522
117522
  assets.push({
117523
117523
  input: sourceRoot,
117524
117524
  glob: "**/{*.ts,*.tsx,*.js,*.jsx}",
@@ -117690,7 +117690,7 @@ ${Object.keys(options).map(
117690
117690
  packageJson.main ??= "dist/legacy/index.cjs";
117691
117691
  packageJson.module ??= "dist/legacy/index.js";
117692
117692
  options.platform && options.platform !== "node" && (packageJson.browser ??= "dist/modern/index.global.js");
117693
- if (options.includeSrc !== false) {
117693
+ if (options.includeSrc === true) {
117694
117694
  let distSrc = sourceRoot.replace(projectRoot, "");
117695
117695
  if (distSrc.startsWith("/")) {
117696
117696
  distSrc = distSrc.substring(1);
@@ -117702,7 +117702,7 @@ ${Object.keys(options).map(
117702
117702
  }
117703
117703
  packageJson.sideEffects ??= false;
117704
117704
  packageJson.files ??= ["dist/**/*"];
117705
- if (options.includeSrc !== false && !packageJson.files.includes("src")) {
117705
+ if (options.includeSrc === true && !packageJson.files.includes("src")) {
117706
117706
  packageJson.files.push("src/**/*");
117707
117707
  }
117708
117708
  packageJson.publishConfig ??= {
@@ -117730,7 +117730,7 @@ ${Object.keys(options).map(
117730
117730
  })
117731
117731
  );
117732
117732
  }
117733
- if (options.includeSrc !== false) {
117733
+ if (options.includeSrc === true) {
117734
117734
  const files = globSync([
117735
117735
  (0, import_devkit2.joinPathFragments)(context.root, options.outputPath, "src/**/*.ts"),
117736
117736
  (0, import_devkit2.joinPathFragments)(context.root, options.outputPath, "src/**/*.tsx"),