@storm-software/workspace-tools 1.63.4 → 1.63.5
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 +1 -0
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +1 -0
- package/src/executors/tsup-browser/executor.js +1 -0
- package/src/executors/tsup-neutral/executor.js +1 -0
- package/src/executors/tsup-node/executor.js +1 -0
- package/src/utils/index.js +1 -0
package/package.json
CHANGED
|
@@ -453176,6 +453176,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
453176
453176
|
var runTsupBuild = async (context, config, options8) => {
|
|
453177
453177
|
const { writeInfo, writeTrace, writeWarning, correctPaths, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
453178
453178
|
const workspaceRoot = correctPaths(config?.workspaceRoot ?? findWorkspaceRoot());
|
|
453179
|
+
process.chdir(workspaceRoot);
|
|
453179
453180
|
const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
|
|
453180
453181
|
ret[key2] = options8.env?.[key2];
|
|
453181
453182
|
return ret;
|
|
@@ -446981,6 +446981,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
446981
446981
|
var runTsupBuild = async (context, config, options8) => {
|
|
446982
446982
|
const { writeInfo, writeTrace, writeWarning, correctPaths, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
446983
446983
|
const workspaceRoot = correctPaths(config?.workspaceRoot ?? findWorkspaceRoot());
|
|
446984
|
+
process.chdir(workspaceRoot);
|
|
446984
446985
|
const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
|
|
446985
446986
|
ret[key2] = options8.env?.[key2];
|
|
446986
446987
|
return ret;
|
|
@@ -446981,6 +446981,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
446981
446981
|
var runTsupBuild = async (context, config, options8) => {
|
|
446982
446982
|
const { writeInfo, writeTrace, writeWarning, correctPaths, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
446983
446983
|
const workspaceRoot = correctPaths(config?.workspaceRoot ?? findWorkspaceRoot());
|
|
446984
|
+
process.chdir(workspaceRoot);
|
|
446984
446985
|
const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
|
|
446985
446986
|
ret[key2] = options8.env?.[key2];
|
|
446986
446987
|
return ret;
|
|
@@ -446981,6 +446981,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
446981
446981
|
var runTsupBuild = async (context, config, options8) => {
|
|
446982
446982
|
const { writeInfo, writeTrace, writeWarning, correctPaths, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
446983
446983
|
const workspaceRoot = correctPaths(config?.workspaceRoot ?? findWorkspaceRoot());
|
|
446984
|
+
process.chdir(workspaceRoot);
|
|
446984
446985
|
const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
|
|
446985
446986
|
ret[key2] = options8.env?.[key2];
|
|
446986
446987
|
return ret;
|
package/src/utils/index.js
CHANGED
|
@@ -457242,6 +457242,7 @@ var applyDefaultOptions = (options8) => {
|
|
|
457242
457242
|
var runTsupBuild = async (context, config, options8) => {
|
|
457243
457243
|
const { writeInfo, writeTrace, writeWarning, correctPaths, findWorkspaceRoot } = await import("@storm-software/config-tools");
|
|
457244
457244
|
const workspaceRoot = correctPaths(config?.workspaceRoot ?? findWorkspaceRoot());
|
|
457245
|
+
process.chdir(workspaceRoot);
|
|
457245
457246
|
const stormEnv = Object.keys(options8.env ?? {}).filter((key2) => key2.startsWith("STORM_")).reduce((ret, key2) => {
|
|
457246
457247
|
ret[key2] = options8.env?.[key2];
|
|
457247
457248
|
return ret;
|