@storm-software/workspace-tools 1.62.36 → 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 CHANGED
@@ -1,3 +1,27 @@
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
+
13
+ ## 1.62.37 (2024-03-03)
14
+
15
+
16
+ ### 🩹 Fixes
17
+
18
+ - **workspace-tools:** Update the path used by the compiler options ([da22cae4](https://github.com/storm-software/storm-ops/commit/da22cae4))
19
+
20
+
21
+ ### ❤️ Thank You
22
+
23
+ - Patrick Sullivan
24
+
1
25
  ## 1.62.36 (2024-03-03)
2
26
 
3
27
 
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 TypiaProgrammer;
470969
- (function(TypiaProgrammer2) {
470968
+ var TypiaProgrammer2;
470969
+ (function(TypiaProgrammer3) {
470970
470970
  var _this = this;
470971
- TypiaProgrammer2.build = function(props) {
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
- })(TypiaProgrammer || (exports2.TypiaProgrammer = TypiaProgrammer = {}));
471225
+ })(TypiaProgrammer2 || (exports2.TypiaProgrammer = TypiaProgrammer2 = {}));
471226
471226
  }
471227
471227
  });
471228
471228
 
@@ -474778,8 +474778,6 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
474778
474778
  ...rawTsconfig.config,
474779
474779
  compilerOptions: {
474780
474780
  ...rawTsconfig.config?.compilerOptions,
474781
- rootDir: ".",
474782
- baseUrl: ".",
474783
474781
  outDir: outputPath,
474784
474782
  noEmit: false,
474785
474783
  emitDeclarationOnly: true,
@@ -474789,7 +474787,7 @@ Error: ${rawTsconfig.error.messageText}` : ""}`
474789
474787
  }
474790
474788
  },
474791
474789
  import_typescript.sys,
474792
- correctPaths((0, import_node_path2.dirname)(options8.tsConfig))
474790
+ workspaceRoot
474793
474791
  );
474794
474792
  parsedTsconfig.options.pathsBasePath = correctPaths(workspaceRoot);
474795
474793
  if (parsedTsconfig.options.paths) {
@@ -481836,14 +481834,14 @@ var executor_default4 = withRunExecutor(
481836
481834
 
481837
481835
  // packages/workspace-tools/src/executors/typia/executor.ts
481838
481836
  var import_fs_extra2 = __toESM(require_lib4());
481837
+ var import_TypiaProgrammer = __toESM(require_TypiaProgrammer());
481839
481838
  async function typiaExecutorFn(options8, _4, config) {
481840
481839
  const { writeInfo } = await import("@storm-software/config-tools");
481841
481840
  if (options8.clean !== false) {
481842
481841
  writeInfo(config, `\u{1F9F9} Cleaning output path: ${options8.outputPath}`);
481843
481842
  (0, import_fs_extra2.removeSync)(options8.outputPath);
481844
481843
  }
481845
- const { TypiaProgrammer } = await Promise.resolve().then(() => __toESM(require_TypiaProgrammer()));
481846
- await TypiaProgrammer.build({
481844
+ await import_TypiaProgrammer.TypiaProgrammer.build({
481847
481845
  input: options8.entryPath,
481848
481846
  output: options8.outputPath,
481849
481847
  project: options8.tsConfig