@storm-software/workspace-tools 1.62.38 → 1.62.39
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 +21 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +32 -2
- package/src/executors/tsup-browser/executor.js +32 -2
- package/src/executors/tsup-neutral/executor.js +32 -2
- package/src/executors/tsup-node/executor.js +32 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.62.39 (2024-03-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Update import method for typia executor ([8ecc276f](https://github.com/storm-software/storm-ops/commit/8ecc276f))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.62.38 (2024-03-03)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -481221,6 +481221,22 @@ ${Object.keys(options8).map(
|
|
|
481221
481221
|
return ret;
|
|
481222
481222
|
}, options8.external);
|
|
481223
481223
|
}
|
|
481224
|
+
for (const internalDependency of getInternalDependencies(
|
|
481225
|
+
context.projectName,
|
|
481226
|
+
context.projectGraph
|
|
481227
|
+
)) {
|
|
481228
|
+
if (internalDependency?.name && config?.externalPackagePatterns?.some(
|
|
481229
|
+
(pattern) => internalDependency.name.includes(pattern)
|
|
481230
|
+
) && !externalDependencies?.some(
|
|
481231
|
+
(externalDependency) => externalDependency.name === internalDependency.name
|
|
481232
|
+
)) {
|
|
481233
|
+
externalDependencies.push({
|
|
481234
|
+
name: internalDependency.name,
|
|
481235
|
+
outputs: [],
|
|
481236
|
+
node: internalDependency
|
|
481237
|
+
});
|
|
481238
|
+
}
|
|
481239
|
+
}
|
|
481224
481240
|
for (const thirdPartyDependency of getExtraDependencies(
|
|
481225
481241
|
context.projectName,
|
|
481226
481242
|
context.projectGraph
|
|
@@ -481294,9 +481310,12 @@ ${externalDependencies.map((dep) => {
|
|
|
481294
481310
|
}
|
|
481295
481311
|
}
|
|
481296
481312
|
for (const packageName of internalDependencies) {
|
|
481297
|
-
|
|
481298
|
-
|
|
481313
|
+
packageJson.dependencies ??= {};
|
|
481314
|
+
if (!packageJson.dependencies[packageName]) {
|
|
481299
481315
|
packageJson.dependencies[packageName] = "latest";
|
|
481316
|
+
if (!options8.external.includes(packageName)) {
|
|
481317
|
+
options8.external.push(packageName);
|
|
481318
|
+
}
|
|
481300
481319
|
}
|
|
481301
481320
|
}
|
|
481302
481321
|
const distPaths = ["dist/"];
|