@tanstack/router-generator 1.58.1 → 1.58.12
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/cjs/filesystem/virtual/loadConfigFile.cjs +1 -2
- package/dist/cjs/filesystem/virtual/loadConfigFile.cjs.map +1 -1
- package/dist/esm/filesystem/virtual/loadConfigFile.js +1 -1
- package/dist/esm/filesystem/virtual/loadConfigFile.js.map +1 -1
- package/package.json +1 -1
- package/src/filesystem/virtual/loadConfigFile.ts +1 -1
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const api = require("tsx/esm/api");
|
|
4
|
-
var _documentCurrentScript = typeof document !== "undefined" ? document.currentScript : null;
|
|
5
4
|
async function loadConfigFile(filePath) {
|
|
6
|
-
const loaded = await api.tsImport(filePath,
|
|
5
|
+
const loaded = await api.tsImport(filePath, "./");
|
|
7
6
|
return loaded;
|
|
8
7
|
}
|
|
9
8
|
exports.loadConfigFile = loadConfigFile;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loadConfigFile.cjs","sources":["../../../../src/filesystem/virtual/loadConfigFile.ts"],"sourcesContent":["import { tsImport } from 'tsx/esm/api'\n\nexport async function loadConfigFile(filePath: string) {\n const loaded = await tsImport(filePath,
|
|
1
|
+
{"version":3,"file":"loadConfigFile.cjs","sources":["../../../../src/filesystem/virtual/loadConfigFile.ts"],"sourcesContent":["import { tsImport } from 'tsx/esm/api'\n\nexport async function loadConfigFile(filePath: string) {\n const loaded = await tsImport(filePath, './')\n return loaded\n}\n"],"names":["tsImport"],"mappings":";;;AAEA,eAAsB,eAAe,UAAkB;AACrD,QAAM,SAAS,MAAMA,IAAAA,SAAS,UAAU,IAAI;AACrC,SAAA;AACT;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loadConfigFile.js","sources":["../../../../src/filesystem/virtual/loadConfigFile.ts"],"sourcesContent":["import { tsImport } from 'tsx/esm/api'\n\nexport async function loadConfigFile(filePath: string) {\n const loaded = await tsImport(filePath,
|
|
1
|
+
{"version":3,"file":"loadConfigFile.js","sources":["../../../../src/filesystem/virtual/loadConfigFile.ts"],"sourcesContent":["import { tsImport } from 'tsx/esm/api'\n\nexport async function loadConfigFile(filePath: string) {\n const loaded = await tsImport(filePath, './')\n return loaded\n}\n"],"names":[],"mappings":";AAEA,eAAsB,eAAe,UAAkB;AACrD,QAAM,SAAS,MAAM,SAAS,UAAU,IAAI;AACrC,SAAA;AACT;"}
|
package/package.json
CHANGED