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 };