fix: unbuild version reduced to 2.0
This commit is contained in:
@@ -11,7 +11,6 @@ export async function outputJSON(
|
||||
await fs.mkdir(dir, { recursive: true });
|
||||
const jsonData = JSON.stringify(data, null, spaces);
|
||||
await fs.writeFile(filePath, jsonData, 'utf8');
|
||||
console.log(`JSON data written to ${filePath}`);
|
||||
} catch (error) {
|
||||
console.error('Error writing JSON file:', error);
|
||||
throw error;
|
||||
@@ -22,8 +21,7 @@ export async function ensureFile(filePath: string) {
|
||||
try {
|
||||
const dir = dirname(filePath);
|
||||
await fs.mkdir(dir, { recursive: true });
|
||||
await fs.writeFile(filePath, '', { flag: 'a' }); // 'a' flag to append if file exists, otherwise create
|
||||
console.log(`File ensured: ${filePath}`);
|
||||
await fs.writeFile(filePath, '', { flag: 'a' });
|
||||
} catch (error) {
|
||||
console.error('Error ensuring file:', error);
|
||||
throw error;
|
||||
|
@@ -1,6 +1,5 @@
|
||||
import * as plugin from 'tailwindcss/plugin.js';
|
||||
import plugin from 'tailwindcss/plugin.js';
|
||||
|
||||
// @ts-expect-error Parameter 'addUtilities' implicitly has an 'any' type.
|
||||
const enterAnimationPlugin = plugin(({ addUtilities }) => {
|
||||
const maxChild = 5;
|
||||
const utilities: Record<string, any> = {};
|
||||
|
@@ -1,4 +1,5 @@
|
||||
import fs from 'node:fs';
|
||||
import fsp from 'node:fs/promises';
|
||||
import { join } from 'node:path';
|
||||
import { fileURLToPath } from 'node:url';
|
||||
|
||||
@@ -62,7 +63,7 @@ async function getLoadingRawByHtmlTemplate(loadingTemplate: string) {
|
||||
return;
|
||||
}
|
||||
|
||||
const htmlRaw = fs.readFileSync(loadingPath, 'utf8');
|
||||
const htmlRaw = await fsp.readFile(loadingPath, 'utf8');
|
||||
return htmlRaw;
|
||||
}
|
||||
|
||||
|
@@ -4,7 +4,7 @@ import { join } from 'node:path';
|
||||
|
||||
import { fs } from '@vben/node-utils';
|
||||
|
||||
import * as dotenv from 'dotenv';
|
||||
import dotenv from 'dotenv';
|
||||
|
||||
/**
|
||||
* 获取当前环境下生效的配置文件名
|
||||
|
Reference in New Issue
Block a user