You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 rivejä
378 B

  1. var gulp = require('gulp'),
  2. rename = require('gulp-rename'),
  3. wrap = require('gulp-wrap'),
  4. sass = require('gulp-sass'),
  5. clone = require('gulp-clone'),
  6. concat = require('gulp-concat');
  7. module.exports = function () {
  8. gulp.src('src/js/i18n/*.js')
  9. .pipe(wrap(';(function ($) { <%=contents%> })(jQuery);'))
  10. .pipe(gulp.dest('dist/js/i18n'))
  11. };