@storm-software/workspace-tools 1.65.3 → 1.65.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 +12 -0
- package/index.js +0 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +0 -2
- package/src/executors/tsup/executor.js +0 -1
- package/src/executors/tsup-browser/executor.js +0 -1
- package/src/executors/tsup-neutral/executor.js +0 -1
- package/src/executors/tsup-node/executor.js +0 -1
- package/src/executors/typia/executor.js +0 -1
- package/src/generators/browser-library/generator.js +0 -1
- package/src/generators/config-schema/generator.js +0 -1
- package/src/generators/neutral-library/generator.js +0 -1
- package/src/generators/node-library/generator.js +0 -1
- package/src/generators/preset/generator.js +0 -1
- package/src/generators/release-version/generator.js +0 -1
- package/assets/cjs_shims.js +0 -11
- package/assets/esm_shims.js +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.65.4 (2024-03-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Remove unneeded chdir lines from base methods ([b65ef683](https://github.com/storm-software/storm-ops/commit/b65ef683))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.65.3 (2024-03-06)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -416663,7 +416663,6 @@ var withRunExecutor = (name, executorFn, executorOptions) => async (_options, co
|
|
|
416663
416663
|
const projectRoot = context.projectsConfigurations.projects[context.projectName]?.root ?? workspaceRoot;
|
|
416664
416664
|
const sourceRoot = context.projectsConfigurations.projects[context.projectName]?.sourceRoot ?? workspaceRoot;
|
|
416665
416665
|
const projectName = context.projectsConfigurations.projects[context.projectName]?.name ?? context.projectName;
|
|
416666
|
-
process.chdir(workspaceRoot);
|
|
416667
416666
|
if (!executorOptions.skipReadingConfig) {
|
|
416668
416667
|
writeDebug(
|
|
416669
416668
|
config,
|
|
@@ -416792,7 +416791,6 @@ var withRunGenerator = (name, generatorFn, generatorOptions = {
|
|
|
416792
416791
|
${Object.keys(process.env).map((key2) => ` - ${key2}=${JSON.stringify(process.env[key2])}`).join("\n")}`
|
|
416793
416792
|
);
|
|
416794
416793
|
}
|
|
416795
|
-
process.chdir(workspaceRoot);
|
|
416796
416794
|
if (generatorOptions?.hooks?.applyDefaultOptions) {
|
|
416797
416795
|
writeDebug(config, "Running the applyDefaultOptions hook...");
|
|
416798
416796
|
options8 = await Promise.resolve(
|