@storm-software/workspace-tools 1.36.0 → 1.36.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 +15 -0
- package/index.js +3 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +2 -1
- package/src/executors/tsup-browser/executor.js +2 -1
- package/src/executors/tsup-neutral/executor.js +2 -1
- package/src/executors/tsup-node/executor.js +3 -2
package/package.json
CHANGED
|
@@ -117016,7 +117016,8 @@ ${externalDependencies.map((dep) => {
|
|
|
117016
117016
|
packageJson.dependencies[packageName] = "latest";
|
|
117017
117017
|
}
|
|
117018
117018
|
});
|
|
117019
|
-
|
|
117019
|
+
console.log(JSON.stringify(options.getConfig));
|
|
117020
|
+
const distPaths = !options?.getConfig || _isFunction(options.getConfig) ? [""] : Object.keys(options.getConfig).map((key) => `${key}/`);
|
|
117020
117021
|
packageJson.type = "module";
|
|
117021
117022
|
if (distPaths.length > 1) {
|
|
117022
117023
|
packageJson.exports ??= {
|
|
@@ -117047,7 +117047,8 @@ ${externalDependencies.map((dep) => {
|
|
|
117047
117047
|
packageJson.dependencies[packageName] = "latest";
|
|
117048
117048
|
}
|
|
117049
117049
|
});
|
|
117050
|
-
|
|
117050
|
+
console.log(JSON.stringify(options.getConfig));
|
|
117051
|
+
const distPaths = !options?.getConfig || _isFunction(options.getConfig) ? [""] : Object.keys(options.getConfig).map((key) => `${key}/`);
|
|
117051
117052
|
packageJson.type = "module";
|
|
117052
117053
|
if (distPaths.length > 1) {
|
|
117053
117054
|
packageJson.exports ??= {
|
|
@@ -117047,7 +117047,8 @@ ${externalDependencies.map((dep) => {
|
|
|
117047
117047
|
packageJson.dependencies[packageName] = "latest";
|
|
117048
117048
|
}
|
|
117049
117049
|
});
|
|
117050
|
-
|
|
117050
|
+
console.log(JSON.stringify(options.getConfig));
|
|
117051
|
+
const distPaths = !options?.getConfig || _isFunction(options.getConfig) ? [""] : Object.keys(options.getConfig).map((key) => `${key}/`);
|
|
117051
117052
|
packageJson.type = "module";
|
|
117052
117053
|
if (distPaths.length > 1) {
|
|
117053
117054
|
packageJson.exports ??= {
|
|
@@ -117047,7 +117047,8 @@ ${externalDependencies.map((dep) => {
|
|
|
117047
117047
|
packageJson.dependencies[packageName] = "latest";
|
|
117048
117048
|
}
|
|
117049
117049
|
});
|
|
117050
|
-
|
|
117050
|
+
console.log(JSON.stringify(options.getConfig));
|
|
117051
|
+
const distPaths = !options?.getConfig || _isFunction(options.getConfig) ? [""] : Object.keys(options.getConfig).map((key) => `${key}/`);
|
|
117051
117052
|
packageJson.type = "module";
|
|
117052
117053
|
if (distPaths.length > 1) {
|
|
117053
117054
|
packageJson.exports ??= {
|
|
@@ -117444,7 +117445,7 @@ var tsNodeBuildExecutorFn = (options, context, config) => {
|
|
|
117444
117445
|
var applyDefaultOptions2 = (options) => {
|
|
117445
117446
|
return {
|
|
117446
117447
|
...applyDefaultOptions({ plugins: [], ...options, platform: "node" }),
|
|
117447
|
-
getConfig: nodeConfig,
|
|
117448
|
+
getConfig: { "dist": nodeConfig },
|
|
117448
117449
|
transports: ["pino-pretty", "pino-loki"]
|
|
117449
117450
|
};
|
|
117450
117451
|
};
|