How to run multiple tasks in VS Code on build?

后端 未结 4 1686
感动是毒
感动是毒 2021-01-31 09:36

Using tasks.json version 2.0.0, I have not been able to make it so that, when I build my application, multiple tasks are run at the same time. I\'m using gulp for m

4条回答
  •  北荒
    北荒 (楼主)
    2021-01-31 09:57

    Add 'gulp-load-plugins' plugin in package.json

    var gulpLoadPlugins = require('gulp-load-plugins'),
    plugins = gulpLoadPlugins();
    

    To read more about that plugin, see How To Build And Develop Websites With Gulp

提交回复
热议问题