From c49972d1cfe629c1a2a865bcd9fd2420d3909e91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=9C=E7=81=AF?= Date: Sat, 17 Feb 2024 02:39:29 +0800 Subject: [PATCH] refactor: remove useless extension action (#159) --- raw/gulpfile.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/raw/gulpfile.js b/raw/gulpfile.js index a26c0cd..b940149 100644 --- a/raw/gulpfile.js +++ b/raw/gulpfile.js @@ -207,11 +207,6 @@ const deploy = gulp.series( const default_action = gulp.series(build, deploy); -async function extension() { - const [name, task] = [process.argv[3], process.argv[4]]; - await (await import(name))[task](config); -} - export { build, bundle, @@ -220,5 +215,4 @@ export { default_action as default, watch, compile_scripts as cs, - extension };