arkormx 2.0.6 → 2.0.8

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/dist/cli.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import { AsyncLocalStorage } from "async_hooks";
3
- import { createJiti } from "@rexxars/jiti";
3
+ import { createJiti } from "jiti";
4
4
  import { pathToFileURL } from "node:url";
5
5
  import { dirname, extname, join, resolve } from "node:path";
6
6
  import { createRequire } from "module";
@@ -107,8 +107,9 @@ var RuntimeModuleLoader = class {
107
107
  const resolvedPath = resolve(filePath);
108
108
  return await createJiti(pathToFileURL(resolvedPath).href, {
109
109
  interopDefault: false,
110
- tsconfigPaths: true
111
- }).import(resolvedPath);
110
+ tsconfigPaths: true,
111
+ sourceMaps: true
112
+ }).import(resolvedPath, { default: true });
112
113
  }
113
114
  };
114
115