码迷,mamicode.com
首页 > 其他好文 > 详细

gulp browserify watchify sass

时间:2015-05-22 17:20:46      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

gulp.task(, () {
  rubysass(scssPath, {
    style: ,
    loadPath: [
      scssPath
    ]
  })
    .pipe(gulp.dest(cssDestPath));
});

gulp.task(, () {
  jscompile();
});

gulp.task(, () {
  jscompile();
});

jscompile(is_watch) {
  customOpts = {
    entries: [jsSrcPath + ],
    basedir: __dirname,
    debug: !production,
    cache: {},
    packageCache: {},
    fullPaths: watch
  };
  opts = lodash.assign({}, watchify.args, customOpts);


  bundler;
  (is_watch) {
    bundler = watchify(browserify(opts));
  } {
    bundler = browserify(opts);
  }

  rebundle() {
    bundler
      .bundle()
      .pipe(source())
      .pipe(buffer())
      .pipe(sourcemaps.init({loadMaps: }))
      .on(, gutil.log)
      .pipe(sourcemaps.write())
      .pipe(gulp.dest(jsDestPath));
  }

  bundler.on(, () {
    rebundle();
  });
  bundler.on(, (message) {
    console.log(message);
  });
  rebundle();
}


gulp browserify watchify sass

标签:

原文地址:http://my.oschina.net/soonlive/blog/418590

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!