有可能/如何直接运行gulp模块?

时间:2016-02-18 10:40:24

标签: node.js gulp gulp-less gulp-plugin

对我来说,独立使用一些gulp模块/插件是有意义的。例如:我已经全局安装了gulp-less(grunt-less -options ./my/css/folder),并希望以grunt less -options ./my/css/folder$ gulp less ./css/ Using gulpfile ~/temp/gulptest/gulpfile.js Task 'less' is not in your gulpfile Please check the documentation for proper gulpfile formatting 的方式使用它而不是lessc。但我的尝试以错误消息结束:

override func viewWillAppear(animated: Bool)
{
super.viewWillAppear(animated)

 //use this
self.navigationItem.setHidesBackButton(true, animated: false)
//else use this

 self.navigationItem.leftBarButtonItem = nil


}

理想情况下,我也想在任何项目之外使用gulp插件作为独立工具。

如何在构建上下文之外运行gulp模块?

如果未提供此选项:是否有解决方法?

1 个答案:

答案 0 :(得分:0)

加入你的gulpfile.js:

gulp.task('less', function () {
  // as you wish
})