How to use the gulp.start function in gulp

To help you get started, we’ve selected a few gulp examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github red5pro / streaming-html5 / gulpfile.js View on Github external
gulp.task('build:webapp', function (cb) { // eslint-disable-line no-unused-vars
  buildDirectory = webappBuildDirectory;
  gulp.start('build');
});
github CureApp / faster-titanium / gulpfile.js View on Github external
.on('end', x => {
                gutil.log(`compile finished: ${dest}`)
                if (isSubDir(relpath, ['common', 'web'])) gulp.start('browserify:web')
                if (isSubDir(relpath, ['common', 'titanium'])) gulp.start('browserify:ti')
            })
    })
github flant / loghouse / images / tabix.ui / gulp / watch.js View on Github external
gulp.watch(path.join(conf.paths.src, '/app/assets/images/favicons/**/*'), function(event) {
    gulp.start('favicons');
  });
github contra / hymn / gulpfile.js View on Github external
soundcloudBundler.on('update', function(){
    gulp.start('soundcloud');
  });
  gulp.watch(paths.static, ['static']);
github bnjjj / my-infra / gulpfile.js View on Github external
      gulpWatch('app/**/*.ts', function (){ gulp.start('tslint'); });
      buildBrowserify({ watch: true }).on('end', done);
github getredash / website / gulpfile.js View on Github external
watch([path.watch.vendors], function (event, cb) {
    gulp.start('vendors:build');
  });
  watch([path.watch.fonts], function (event, cb) {
github se-panfilov / mini-toastr / gulpfile.js View on Github external
gulp.task('default', () => {
  gulp.start('make')
  gulp.start('todo')
  gulp.start('watch')
})
github techlab / SmartWizard / gulpfile.js View on Github external
gulp.task('clean', function () {
    gulp.start( 'clean:js', 'clean:css');
});
github trendyminds / pura / gulp / tasks / watch.js View on Github external
watch(paths.app.stylesAll, function () {
    gulp.start('styles', 'inject-css');
  });