@storm-software/workspace-tools 1.62.37 → 1.62.38
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 +6 -6
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/typia/executor.js +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.62.38 (2024-03-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Update base path passed to config normalizer ([a146c0e0](https://github.com/storm-software/storm-ops/commit/a146c0e0))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.62.37 (2024-03-03)
|
|
2
14
|
|
|
3
15
|
|
package/index.js
CHANGED
|
@@ -470965,10 +470965,10 @@ var require_TypiaProgrammer = __commonJS({
|
|
|
470965
470965
|
var typescript_1 = __importDefault2(require_typescript());
|
|
470966
470966
|
var ImportTransformer_1 = require_ImportTransformer();
|
|
470967
470967
|
var transform_1 = __importDefault2(require_transform());
|
|
470968
|
-
var
|
|
470969
|
-
(function(
|
|
470968
|
+
var TypiaProgrammer2;
|
|
470969
|
+
(function(TypiaProgrammer3) {
|
|
470970
470970
|
var _this = this;
|
|
470971
|
-
|
|
470971
|
+
TypiaProgrammer3.build = function(props) {
|
|
470972
470972
|
return __awaiter2(_this, void 0, void 0, function() {
|
|
470973
470973
|
var parent_1, compilerOptions, program, _a3, _b, diagnostics, result, _loop_1, diagnostics_1, diagnostics_1_1, diag, printer2, _c2, _d, file, to3, content, e_1_1;
|
|
470974
470974
|
var e_2, _e12, e_1, _f;
|
|
@@ -471222,7 +471222,7 @@ var require_TypiaProgrammer = __commonJS({
|
|
|
471222
471222
|
var is_supported_extension = function(filename) {
|
|
471223
471223
|
return filename.endsWith(".ts") && !filename.endsWith(".d.ts") || filename.endsWith(".tsx") && !filename.endsWith(".d.tsx");
|
|
471224
471224
|
};
|
|
471225
|
-
})(
|
|
471225
|
+
})(TypiaProgrammer2 || (exports2.TypiaProgrammer = TypiaProgrammer2 = {}));
|
|
471226
471226
|
}
|
|
471227
471227
|
});
|
|
471228
471228
|
|
|
@@ -481834,14 +481834,14 @@ var executor_default4 = withRunExecutor(
|
|
|
481834
481834
|
|
|
481835
481835
|
// packages/workspace-tools/src/executors/typia/executor.ts
|
|
481836
481836
|
var import_fs_extra2 = __toESM(require_lib4());
|
|
481837
|
+
var import_TypiaProgrammer = __toESM(require_TypiaProgrammer());
|
|
481837
481838
|
async function typiaExecutorFn(options8, _4, config) {
|
|
481838
481839
|
const { writeInfo } = await import("@storm-software/config-tools");
|
|
481839
481840
|
if (options8.clean !== false) {
|
|
481840
481841
|
writeInfo(config, `\u{1F9F9} Cleaning output path: ${options8.outputPath}`);
|
|
481841
481842
|
(0, import_fs_extra2.removeSync)(options8.outputPath);
|
|
481842
481843
|
}
|
|
481843
|
-
|
|
481844
|
-
await TypiaProgrammer.build({
|
|
481844
|
+
await import_TypiaProgrammer.TypiaProgrammer.build({
|
|
481845
481845
|
input: options8.entryPath,
|
|
481846
481846
|
output: options8.outputPath,
|
|
481847
481847
|
project: options8.tsConfig
|