vike 0.4.184-commit-ee12be8 → 0.4.184-commit-6c9e3a7
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 +0 -6
- package/dist/cjs/utils/PROJECT_VERSION.js +1 -1
- package/dist/esm/node/plugin/plugins/importUserCode/v1-design/getVikeConfig/transpileAndExecuteFile.js +1 -7
- 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 +2 -3
|
@@ -16,8 +16,6 @@ require("source-map-support/register.js");
|
|
|
16
16
|
const getFilePath_js_1 = require("../../../../shared/getFilePath.js");
|
|
17
17
|
(0, utils_js_1.assertIsNotProductionRuntime)();
|
|
18
18
|
const debug = (0, utils_js_1.createDebugger)('vike:pointer-imports');
|
|
19
|
-
console.log('transpileWithEsbuild.ts', esbuild_1.version);
|
|
20
|
-
console.log('require.resolve("vike-react/config")', require.resolve("vike-react/config"));
|
|
21
19
|
async function transpileAndExecuteFile(filePath, userRootDir, isConfigFile) {
|
|
22
20
|
const { filePathAbsoluteFilesystem, filePathToShowToUserResolved } = filePath;
|
|
23
21
|
const fileExtension = getFileExtension(filePathAbsoluteFilesystem);
|
|
@@ -65,7 +63,6 @@ async function transpileFile(filePath, transformImports, userRootDir) {
|
|
|
65
63
|
return code;
|
|
66
64
|
}
|
|
67
65
|
async function transpileWithEsbuild(filePath, userRootDir, transformImports) {
|
|
68
|
-
console.log('transpileWithEsbuild()');
|
|
69
66
|
const entryFilePath = filePath.filePathAbsoluteFilesystem;
|
|
70
67
|
const entryFileDir = path_1.default.posix.dirname(entryFilePath);
|
|
71
68
|
const options = {
|
|
@@ -101,16 +98,13 @@ async function transpileWithEsbuild(filePath, userRootDir, transformImports) {
|
|
|
101
98
|
build.onResolve({ filter: /.*/ }, async (args) => {
|
|
102
99
|
if (args.kind !== 'import-statement')
|
|
103
100
|
return;
|
|
104
|
-
console.log('onResolve()', args);
|
|
105
101
|
// Avoid infinite loop: https://github.com/evanw/esbuild/issues/3095#issuecomment-1546916366
|
|
106
102
|
const useEsbuildResolver = 'useEsbuildResolver';
|
|
107
103
|
if (args.pluginData?.[useEsbuildResolver])
|
|
108
104
|
return;
|
|
109
105
|
const { path, ...opts } = args;
|
|
110
106
|
opts.pluginData = { [useEsbuildResolver]: true };
|
|
111
|
-
console.log('build.resolve()', path, opts);
|
|
112
107
|
const resolved = await build.resolve(path, opts);
|
|
113
|
-
console.log('build.resolve() done');
|
|
114
108
|
if (resolved.errors.length > 0) {
|
|
115
109
|
/* We could do the following to let Node.js throw the error, but we don't because the error shown by esbuild is prettier: the Node.js error refers to the transpiled [build-f7i251e0iwnw]+config.ts.mjs file which isn't that nice, whereas esbuild refers to the source +config.ts file.
|
|
116
110
|
pointerImports[args.path] = false
|
|
@@ -2,7 +2,7 @@ export { transpileAndExecuteFile };
|
|
|
2
2
|
export { getConfigBuildErrorFormatted };
|
|
3
3
|
export { getConfigExecutionErrorIntroMsg };
|
|
4
4
|
export { isTemporaryBuildFile };
|
|
5
|
-
import { build, formatMessages
|
|
5
|
+
import { build, formatMessages } from 'esbuild';
|
|
6
6
|
import fs from 'fs';
|
|
7
7
|
import path from 'path';
|
|
8
8
|
import pc from '@brillout/picocolors';
|
|
@@ -14,8 +14,6 @@ import 'source-map-support/register.js';
|
|
|
14
14
|
import { getFilePathAbsoluteUserRootDir } from '../../../../shared/getFilePath.js';
|
|
15
15
|
assertIsNotProductionRuntime();
|
|
16
16
|
const debug = createDebugger('vike:pointer-imports');
|
|
17
|
-
console.log('transpileWithEsbuild.ts', version);
|
|
18
|
-
console.log('require.resolve("vike-react/config")', require.resolve("vike-react/config"));
|
|
19
17
|
async function transpileAndExecuteFile(filePath, userRootDir, isConfigFile) {
|
|
20
18
|
const { filePathAbsoluteFilesystem, filePathToShowToUserResolved } = filePath;
|
|
21
19
|
const fileExtension = getFileExtension(filePathAbsoluteFilesystem);
|
|
@@ -62,7 +60,6 @@ async function transpileFile(filePath, transformImports, userRootDir) {
|
|
|
62
60
|
return code;
|
|
63
61
|
}
|
|
64
62
|
async function transpileWithEsbuild(filePath, userRootDir, transformImports) {
|
|
65
|
-
console.log('transpileWithEsbuild()');
|
|
66
63
|
const entryFilePath = filePath.filePathAbsoluteFilesystem;
|
|
67
64
|
const entryFileDir = path.posix.dirname(entryFilePath);
|
|
68
65
|
const options = {
|
|
@@ -98,16 +95,13 @@ async function transpileWithEsbuild(filePath, userRootDir, transformImports) {
|
|
|
98
95
|
build.onResolve({ filter: /.*/ }, async (args) => {
|
|
99
96
|
if (args.kind !== 'import-statement')
|
|
100
97
|
return;
|
|
101
|
-
console.log('onResolve()', args);
|
|
102
98
|
// Avoid infinite loop: https://github.com/evanw/esbuild/issues/3095#issuecomment-1546916366
|
|
103
99
|
const useEsbuildResolver = 'useEsbuildResolver';
|
|
104
100
|
if (args.pluginData?.[useEsbuildResolver])
|
|
105
101
|
return;
|
|
106
102
|
const { path, ...opts } = args;
|
|
107
103
|
opts.pluginData = { [useEsbuildResolver]: true };
|
|
108
|
-
console.log('build.resolve()', path, opts);
|
|
109
104
|
const resolved = await build.resolve(path, opts);
|
|
110
|
-
console.log('build.resolve() done');
|
|
111
105
|
if (resolved.errors.length > 0) {
|
|
112
106
|
/* We could do the following to let Node.js throw the error, but we don't because the error shown by esbuild is prettier: the Node.js error refers to the transpiled [build-f7i251e0iwnw]+config.ts.mjs file which isn't that nice, whereas esbuild refers to the source +config.ts file.
|
|
113
107
|
pointerImports[args.path] = false
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PROJECT_VERSION: "0.4.184-commit-
|
|
1
|
+
export declare const PROJECT_VERSION: "0.4.184-commit-6c9e3a7";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Automatically updated by @brillout/release-me
|
|
2
|
-
export const PROJECT_VERSION = '0.4.184-commit-
|
|
2
|
+
export const PROJECT_VERSION = '0.4.184-commit-6c9e3a7';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vike",
|
|
3
|
-
"version": "0.4.184-commit-
|
|
3
|
+
"version": "0.4.184-commit-6c9e3a7",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "tsc --watch",
|
|
6
6
|
"build": "rimraf dist/ && pnpm run build:esm && pnpm run build:cjs",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"acorn": "^8.0.0",
|
|
22
22
|
"cac": "^6.0.0",
|
|
23
23
|
"es-module-lexer": "^1.0.0",
|
|
24
|
-
"esbuild": "
|
|
24
|
+
"esbuild": "0.23.0",
|
|
25
25
|
"fast-glob": "^3.0.0",
|
|
26
26
|
"semver": "^7.0.0",
|
|
27
27
|
"sirv": "^2.0.0",
|
|
@@ -217,7 +217,6 @@
|
|
|
217
217
|
"acorn": "^8.11.2",
|
|
218
218
|
"cac": "^6.7.14",
|
|
219
219
|
"es-module-lexer": "^1.4.1",
|
|
220
|
-
"esbuild": "^0.19.10",
|
|
221
220
|
"fast-glob": "^3.3.2",
|
|
222
221
|
"react-streaming": "^0.3.42",
|
|
223
222
|
"rimraf": "^5.0.5",
|