change use of fs-extra

This commit is contained in:
Norbert de Langen 2022-10-18 09:48:47 +02:00
parent 58675b3bea
commit 1bfde3978e
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
3 changed files with 17 additions and 17 deletions

View File

@ -1,5 +1,5 @@
import { dirname, join } from 'path';
import { copy, writeFile, remove } from 'fs-extra';
import fs from 'fs-extra';
import express from 'express';
import { logger } from '@storybook/node-logger';
@ -111,7 +111,7 @@ const starter: StarterFunction = async function* starterGeneratorFn({
// make sure we clear output directory of addons dir before starting
// this could cause caching issues where addons are loaded when they shouldn't
const addonsDir = config.outdir;
await remove(addonsDir);
await fs.remove(addonsDir);
yield;
@ -191,7 +191,7 @@ const builder: BuilderFunction = async function* builderGeneratorFn({ startTime,
yield;
const managerFiles = copy(coreDirOrigin, coreDirTarget);
const managerFiles = fs.copy(coreDirOrigin, coreDirTarget);
const { cssFiles, jsFiles } = await readOrderedFiles(addonsDir, compilation?.outputFiles);
yield;
@ -211,7 +211,7 @@ const builder: BuilderFunction = async function* builderGeneratorFn({ startTime,
await Promise.all([
//
writeFile(join(options.outputDir, 'index.html'), html),
fs.writeFile(join(options.outputDir, 'index.html'), html),
managerFiles,
]);

View File

@ -1,5 +1,5 @@
import { OutputFile } from 'esbuild';
import { writeFile, ensureFile } from 'fs-extra';
import fs from 'fs-extra';
import { join } from 'path';
import { Compilation } from '../types';
@ -12,7 +12,7 @@ export async function readOrderedFiles(
// convert deeply nested paths to a single level, also remove special characters
const { location, url } = sanitizePath(file, addonsDir);
await ensureFile(location).then(() => writeFile(location, file.contents));
await fs.ensureFile(location).then(() => fs.writeFile(location, file.contents));
return url;
}) || []
);

View File

@ -1,5 +1,5 @@
import path, { dirname, join } from 'path';
import { readFile, pathExists } from 'fs-extra';
import fs from 'fs-extra';
import { render } from 'ejs';
@ -19,21 +19,21 @@ export const getTemplatePath = async (template: string) => {
export const readTemplate = async (template: string) => {
const path = await getTemplatePath(template);
return readFile(path, 'utf8');
return fs.readFile(path, 'utf8');
};
export async function getManagerHeadTemplate(
configDirPath: string,
interpolations: Record<string, string>
) {
const head = await pathExists(path.resolve(configDirPath, 'manager-head.html')).then<
Promise<string> | false
>((exists) => {
if (exists) {
return readFile(path.resolve(configDirPath, 'manager-head.html'), 'utf8');
}
return false;
});
const head = await fs
.pathExists(path.resolve(configDirPath, 'manager-head.html'))
.then<Promise<string> | false>((exists) => {
if (exists) {
return fs.readFile(path.resolve(configDirPath, 'manager-head.html'), 'utf8');
}
return false;
});
if (!head) {
return '';
@ -76,6 +76,6 @@ export const renderHTML = async (
PREVIEW_URL: JSON.stringify(previewUrl, null, 2), // global preview URL
SERVER_CHANNEL_URL: JSON.stringify(serverChannelUrl, null, 2),
},
head: customHeadRef ? await readFile(customHeadRef, 'utf8') : '',
head: customHeadRef ? await fs.readFile(customHeadRef, 'utf8') : '',
});
};