diff --git a/code/lib/csf-plugin/src/index.ts b/code/lib/csf-plugin/src/index.ts index 1cd57cd5311..2fbf7bd94cd 100644 --- a/code/lib/csf-plugin/src/index.ts +++ b/code/lib/csf-plugin/src/index.ts @@ -1,5 +1,5 @@ import { createUnplugin } from 'unplugin'; -import fs from 'fs'; +import fs from 'fs/promises'; import { loadCsf, enrichCsf, formatCsf } from '@storybook/csf-tools'; export interface CsfPluginOptions { @@ -14,11 +14,12 @@ const logger = console; export const unplugin = createUnplugin((options) => { return { name: 'unplugin-csf', + enforce: 'pre', loadInclude(id) { return STORIES_REGEX.test(id); }, - load(fname) { - const code = fs.readFileSync(fname, 'utf-8'); + async load(fname) { + const code = await fs.readFile(fname, 'utf-8'); try { const csf = loadCsf(code, { makeTitle: (userTitle) => userTitle || 'default' }).parse(); enrichCsf(csf);