mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 03:51:06 +08:00
Remove fs-extra
from renderers/svelte
VS Code complains about not being able to find Node types, but building the package works. Need to investigate.
This commit is contained in:
parent
08c6eef3ff
commit
a09abbc1c8
@ -68,7 +68,6 @@
|
||||
"@sveltejs/vite-plugin-svelte": "^3.0.2",
|
||||
"@testing-library/svelte": "patch:@testing-library/svelte@npm%3A4.1.0#~/.yarn/patches/@testing-library-svelte-npm-4.1.0-34b7037bc0.patch",
|
||||
"expect-type": "^0.15.0",
|
||||
"fs-extra": "^11.1.0",
|
||||
"svelte": "^5.0.0-next.65",
|
||||
"svelte-check": "^3.6.4",
|
||||
"typescript": "^5.3.2"
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { copy } from 'fs-extra';
|
||||
import { cp } from 'node:fs/promises';
|
||||
|
||||
import { join } from 'path';
|
||||
|
||||
const src = join(__dirname, '..', 'src');
|
||||
@ -11,7 +12,7 @@ const run = async () => {
|
||||
console.log('Copying unbundled files to dist...');
|
||||
await Promise.all(
|
||||
PATHS_TO_COPY.map((pathToCopy) =>
|
||||
copy(join(src, pathToCopy), join(dist, pathToCopy), { overwrite: true })
|
||||
cp(join(src, pathToCopy), join(dist, pathToCopy), { recursive: true, force: true })
|
||||
)
|
||||
);
|
||||
console.log('Done!');
|
||||
|
@ -7052,7 +7052,6 @@ __metadata:
|
||||
"@sveltejs/vite-plugin-svelte": "npm:^3.0.2"
|
||||
"@testing-library/svelte": "patch:@testing-library/svelte@npm%3A4.1.0#~/.yarn/patches/@testing-library-svelte-npm-4.1.0-34b7037bc0.patch"
|
||||
expect-type: "npm:^0.15.0"
|
||||
fs-extra: "npm:^11.1.0"
|
||||
svelte: "npm:^5.0.0-next.65"
|
||||
svelte-check: "npm:^3.6.4"
|
||||
sveltedoc-parser: "npm:^4.2.1"
|
||||
|
Loading…
x
Reference in New Issue
Block a user