@storm-software/workspace-tools 1.62.38 → 1.63.0
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 +24 -0
- package/index.js +22 -3
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +33 -3
- package/src/executors/tsup-browser/executor.js +33 -3
- package/src/executors/tsup-neutral/executor.js +33 -3
- package/src/executors/tsup-node/executor.js +33 -3
- package/src/utils/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 1.63.0 (2024-03-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🚀 Features
|
|
5
|
+
|
|
6
|
+
- **config:** Added the implementation for the `externalPackagePatterns` config parameter ([73762463](https://github.com/storm-software/storm-ops/commit/73762463))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
13
|
+
## 1.62.39 (2024-03-03)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### 🩹 Fixes
|
|
17
|
+
|
|
18
|
+
- **workspace-tools:** Update import method for typia executor ([8ecc276f](https://github.com/storm-software/storm-ops/commit/8ecc276f))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### ❤️ Thank You
|
|
22
|
+
|
|
23
|
+
- Patrick Sullivan
|
|
24
|
+
|
|
1
25
|
## 1.62.38 (2024-03-03)
|
|
2
26
|
|
|
3
27
|
|
package/index.js
CHANGED
|
@@ -474787,7 +474787,7 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
|
|
|
474787
474787
|
}
|
|
474788
474788
|
},
|
|
474789
474789
|
import_typescript.sys,
|
|
474790
|
-
|
|
474790
|
+
(0, import_node_path2.dirname)(options8.tsConfig)
|
|
474791
474791
|
);
|
|
474792
474792
|
parsedTsconfig.options.pathsBasePath = correctPaths(workspaceRoot);
|
|
474793
474793
|
if (parsedTsconfig.options.paths) {
|
|
@@ -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/"];
|