vike 0.4.195-commit-f7e91ba → 0.4.195-commit-c68b18f
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/node/plugin/plugins/importUserCode/v1-design/getVikeConfig/transpileAndExecuteFile.js +1 -2
- package/dist/cjs/utils/PROJECT_VERSION.js +1 -1
- package/dist/esm/node/plugin/plugins/importUserCode/v1-design/getVikeConfig/transpileAndExecuteFile.js +1 -2
- package/dist/esm/utils/PROJECT_VERSION.d.ts +1 -1
- package/dist/esm/utils/PROJECT_VERSION.js +1 -1
- package/dist/esm/utils/projectInfo.d.ts +1 -1
- package/package.json +1 -1
|
@@ -181,12 +181,11 @@ async function transpileWithEsbuild(filePath, userRootDir, transformImports) {
|
|
|
181
181
|
}
|
|
182
182
|
if (debug.isActivated)
|
|
183
183
|
debug('onResolved()', { args, resolved, importPathTranspiled, isPointerImport, isExternal });
|
|
184
|
-
pointerImports[importPathTranspiled] = isPointerImport;
|
|
185
184
|
if (isExternal) {
|
|
185
|
+
pointerImports[importPathTranspiled] = isPointerImport;
|
|
186
186
|
return { external: true, path: importPathTranspiled };
|
|
187
187
|
}
|
|
188
188
|
else {
|
|
189
|
-
resolved.path = importPathTranspiled;
|
|
190
189
|
return resolved;
|
|
191
190
|
}
|
|
192
191
|
});
|
|
@@ -176,12 +176,11 @@ async function transpileWithEsbuild(filePath, userRootDir, transformImports) {
|
|
|
176
176
|
}
|
|
177
177
|
if (debug.isActivated)
|
|
178
178
|
debug('onResolved()', { args, resolved, importPathTranspiled, isPointerImport, isExternal });
|
|
179
|
-
pointerImports[importPathTranspiled] = isPointerImport;
|
|
180
179
|
if (isExternal) {
|
|
180
|
+
pointerImports[importPathTranspiled] = isPointerImport;
|
|
181
181
|
return { external: true, path: importPathTranspiled };
|
|
182
182
|
}
|
|
183
183
|
else {
|
|
184
|
-
resolved.path = importPathTranspiled;
|
|
185
184
|
return resolved;
|
|
186
185
|
}
|
|
187
186
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PROJECT_VERSION: "0.4.195-commit-
|
|
1
|
+
export declare const PROJECT_VERSION: "0.4.195-commit-c68b18f";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Automatically updated by @brillout/release-me
|
|
2
|
-
export const PROJECT_VERSION = '0.4.195-commit-
|
|
2
|
+
export const PROJECT_VERSION = '0.4.195-commit-c68b18f';
|