diff options
author | 2024-08-20 18:25:04 +0800 | |
---|---|---|
committer | 2024-08-20 18:25:04 +0800 | |
commit | 1fd84b6bbc42885d0a80ea65a87b4a7946320924 (patch) | |
tree | 6bf19520a56b9c7cecdf3a64f2f9e65d868bb8bd /scripts/index.js | |
parent | 88b6dca63b56ef12b92543384365f8f7f1cad85d (diff) | |
download | astro-1fd84b6bbc42885d0a80ea65a87b4a7946320924.tar.gz astro-1fd84b6bbc42885d0a80ea65a87b4a7946320924.tar.zst astro-1fd84b6bbc42885d0a80ea65a87b4a7946320924.zip |
Remove unused code in internal scripts (#11769)
Diffstat (limited to 'scripts/index.js')
-rwxr-xr-x | scripts/index.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/index.js b/scripts/index.js index 381500ac4..9129bd4f4 100755 --- a/scripts/index.js +++ b/scripts/index.js @@ -8,11 +8,6 @@ export default async function run() { await build(...args, cmd === 'dev' ? 'IS_DEV' : undefined); break; } - case 'copy': { - const { default: copy } = await import('./cmd/copy.js'); - await copy(...args); - break; - } case 'prebuild': { const { default: prebuild } = await import('./cmd/prebuild.js'); await prebuild(...args); |