vike 0.4.228-commit-d423e4f → 0.4.228-commit-67e28cd
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/crawlPlusFiles/ignorePatternsBuiltIn.js +2 -0
- package/dist/cjs/node/plugin/plugins/importUserCode/v1-design/getVikeConfig/transpileAndExecuteFile.js +1 -1
- package/dist/cjs/utils/PROJECT_VERSION.js +1 -1
- package/dist/esm/node/plugin/plugins/importUserCode/v1-design/getVikeConfig/crawlPlusFiles/ignorePatternsBuiltIn.d.ts +1 -1
- package/dist/esm/node/plugin/plugins/importUserCode/v1-design/getVikeConfig/crawlPlusFiles/ignorePatternsBuiltIn.js +2 -0
- package/dist/esm/node/plugin/plugins/importUserCode/v1-design/getVikeConfig/transpileAndExecuteFile.js +1 -1
- package/dist/esm/utils/PROJECT_VERSION.d.ts +1 -1
- package/dist/esm/utils/PROJECT_VERSION.js +1 -1
- package/package.json +1 -1
|
@@ -11,6 +11,8 @@ exports.ignorePatternsBuiltIn = [
|
|
|
11
11
|
// +Page.telefunc.js
|
|
12
12
|
// ```
|
|
13
13
|
'**/*.telefunc.*',
|
|
14
|
+
// https://github.com/vikejs/vike/issues/1589#issuecomment-2031925598
|
|
15
|
+
'**/.history/**',
|
|
14
16
|
// https://github.com/vikejs/vike/discussions/2222
|
|
15
17
|
'**/*.generated.*'
|
|
16
18
|
];
|
|
@@ -126,7 +126,7 @@ async function transpileWithEsbuild(filePath, userRootDir, transformImports, esb
|
|
|
126
126
|
// - Sitll required for esbuild@0.24.0 (November 2024).
|
|
127
127
|
// - Let's try to remove this workaround again later.
|
|
128
128
|
if (resolved.errors.length > 0) {
|
|
129
|
-
const resolvedWithNode = (0, utils_js_1.requireResolveOptional)(path, args.resolveDir);
|
|
129
|
+
const resolvedWithNode = (0, utils_js_1.requireResolveOptional)(path, (0, utils_js_1.toPosixPath)(args.resolveDir));
|
|
130
130
|
if (debugEsbuildResolve.isActivated)
|
|
131
131
|
debugEsbuildResolve('resolvedWithNode', resolvedWithNode);
|
|
132
132
|
if (resolvedWithNode)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ignorePatternsBuiltIn: readonly ["**/node_modules/**", "**/ejected/**", "**/*.telefunc.*", "**/*.generated.*"];
|
|
1
|
+
export declare const ignorePatternsBuiltIn: readonly ["**/node_modules/**", "**/ejected/**", "**/*.telefunc.*", "**/.history/**", "**/*.generated.*"];
|
|
@@ -8,6 +8,8 @@ export const ignorePatternsBuiltIn = [
|
|
|
8
8
|
// +Page.telefunc.js
|
|
9
9
|
// ```
|
|
10
10
|
'**/*.telefunc.*',
|
|
11
|
+
// https://github.com/vikejs/vike/issues/1589#issuecomment-2031925598
|
|
12
|
+
'**/.history/**',
|
|
11
13
|
// https://github.com/vikejs/vike/discussions/2222
|
|
12
14
|
'**/*.generated.*'
|
|
13
15
|
];
|
|
@@ -121,7 +121,7 @@ async function transpileWithEsbuild(filePath, userRootDir, transformImports, esb
|
|
|
121
121
|
// - Sitll required for esbuild@0.24.0 (November 2024).
|
|
122
122
|
// - Let's try to remove this workaround again later.
|
|
123
123
|
if (resolved.errors.length > 0) {
|
|
124
|
-
const resolvedWithNode = requireResolveOptional(path, args.resolveDir);
|
|
124
|
+
const resolvedWithNode = requireResolveOptional(path, toPosixPath(args.resolveDir));
|
|
125
125
|
if (debugEsbuildResolve.isActivated)
|
|
126
126
|
debugEsbuildResolve('resolvedWithNode', resolvedWithNode);
|
|
127
127
|
if (resolvedWithNode)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PROJECT_VERSION: "0.4.228-commit-
|
|
1
|
+
export declare const PROJECT_VERSION: "0.4.228-commit-67e28cd";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Automatically updated by @brillout/release-me
|
|
2
|
-
export const PROJECT_VERSION = '0.4.228-commit-
|
|
2
|
+
export const PROJECT_VERSION = '0.4.228-commit-67e28cd';
|