Skip to content

Instantly share code, notes, and snippets.

@ics-ikeda
Created September 29, 2015 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ics-ikeda/496afc830ff8d6152f5e to your computer and use it in GitHub Desktop.
Save ics-ikeda/496afc830ff8d6152f5e to your computer and use it in GitHub Desktop.
// プラグインの読み込み
var gulp = require('gulp');
var uglify = require('gulp-uglify');
gulp.task('compress', function() {
return gulp.src('src/*.js') // JSファイルを監視
.pipe(uglify()) // JSファイルを結合
.pipe(gulp.dest('dist')); // 結合したファイルを保存
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment