25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gulpfile.js 393 B

12345678910111213
  1. var gulp = require('gulp');
  2. var concat = require('gulp-concat');
  3. var rename = require('gulp-rename');
  4. gulp.task('webcrypto', function () {
  5. return gulp.src(['node_modules/unibabel/index.js', 'node_modules/unibabel/unibabel.hex.js', 'webcrypto.js'])
  6. .pipe(concat('lesspass.webcrypto.js'))
  7. .pipe(gulp.dest('lib'));
  8. });
  9. gulp.task('default', ['webcrypto'], function () {
  10. });