vike 0.4.204-commit-7f41ba2 → 0.4.204-commit-386d2d8
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.js +5 -1
- package/dist/cjs/utils/PROJECT_VERSION.js +1 -1
- package/dist/esm/node/plugin/plugins/importUserCode/v1-design/getVikeConfig/crawlPlusFiles.js +5 -1
- 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
package/dist/cjs/node/plugin/plugins/importUserCode/v1-design/getVikeConfig/crawlPlusFiles.js
CHANGED
|
@@ -291,7 +291,11 @@ async function getFileStats(filePathAbsolute) {
|
|
|
291
291
|
return stats;
|
|
292
292
|
}
|
|
293
293
|
async function runCmd1(cmd, cwd) {
|
|
294
|
-
const { stdout } = await execA(cmd, {
|
|
294
|
+
const { stdout } = await execA(cmd, {
|
|
295
|
+
cwd,
|
|
296
|
+
// https://github.com/vikejs/vike/issues/1982
|
|
297
|
+
maxBuffer: Infinity
|
|
298
|
+
});
|
|
295
299
|
/* Not always true: https://github.com/vikejs/vike/issues/1440#issuecomment-1892831303
|
|
296
300
|
assert(res.stderr === '')
|
|
297
301
|
*/
|
package/dist/esm/node/plugin/plugins/importUserCode/v1-design/getVikeConfig/crawlPlusFiles.js
CHANGED
|
@@ -286,7 +286,11 @@ async function getFileStats(filePathAbsolute) {
|
|
|
286
286
|
return stats;
|
|
287
287
|
}
|
|
288
288
|
async function runCmd1(cmd, cwd) {
|
|
289
|
-
const { stdout } = await execA(cmd, {
|
|
289
|
+
const { stdout } = await execA(cmd, {
|
|
290
|
+
cwd,
|
|
291
|
+
// https://github.com/vikejs/vike/issues/1982
|
|
292
|
+
maxBuffer: Infinity
|
|
293
|
+
});
|
|
290
294
|
/* Not always true: https://github.com/vikejs/vike/issues/1440#issuecomment-1892831303
|
|
291
295
|
assert(res.stderr === '')
|
|
292
296
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PROJECT_VERSION: "0.4.204-commit-
|
|
1
|
+
export declare const PROJECT_VERSION: "0.4.204-commit-386d2d8";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Automatically updated by @brillout/release-me
|
|
2
|
-
export const PROJECT_VERSION = '0.4.204-commit-
|
|
2
|
+
export const PROJECT_VERSION = '0.4.204-commit-386d2d8';
|