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:
ziebam 2024-09-14 18:32:26 +02:00
parent 08c6eef3ff
commit a09abbc1c8
3 changed files with 3 additions and 4 deletions

View File

@ -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"

View File

@ -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!');

View File

@ -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"