No Description
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.

gulpfile.js 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. var basePaths = {
  2. src: 'src/',
  3. dest: 'dist/',
  4. bower: 'bower_components/'
  5. };
  6. var paths = {
  7. scripts: {
  8. src: basePaths.src + 'js/',
  9. dest: basePaths.dest + 'js/'
  10. },
  11. styles: {
  12. src: basePaths.src + 'css/',
  13. dest: basePaths.dest + 'css/'
  14. },
  15. fonts: {
  16. src: basePaths.src + 'fonts/',
  17. dest: basePaths.dest + 'fonts/'
  18. }
  19. };
  20. var appFiles = {
  21. styles: [paths.styles.src + '**/*.scss'],
  22. jqueryShare: [paths.scripts.src + 'jquery.qrcode.min.js', paths.scripts.src + 'jquery.share.js'],
  23. socialShare: [paths.scripts.src + 'qrcode.js', paths.scripts.src + 'social-share.js'],
  24. fonts: [paths.fonts.src + '**/*']
  25. };
  26. var vendorFiles = {
  27. styles: [],
  28. scripts: [],
  29. fonts: []
  30. };
  31. /*
  32. Let the magic begin
  33. */
  34. var gulp = require('gulp');
  35. var es = require('event-stream');
  36. var gutil = require('gulp-util');
  37. var concat = require('gulp-concat');
  38. var del = require('del');
  39. var plugins = require("gulp-load-plugins")({
  40. pattern: ['gulp-*', 'gulp.*'],
  41. replaceString: /\bgulp[\-.]/
  42. });
  43. // Allows gulp --dev to be run for a more verbose output
  44. var isProduction = true;
  45. var sassStyle = 'compressed';
  46. var sourceMap = false;
  47. if(gutil.env.dev === true) {
  48. sassStyle = 'expanded';
  49. sourceMap = true;
  50. isProduction = false;
  51. }
  52. var changeEvent = function(evt) {
  53. gutil.log('File', gutil.colors.cyan(evt.path.replace(new RegExp('/.*(?=/' + basePaths.src + ')/'), '')), 'was', gutil.colors.magenta(evt.type));
  54. };
  55. var clean = function(path, cb) {
  56. // You can use multiple globbing patterns as you would with `gulp.src`
  57. del([path], {force:true}, cb);
  58. };
  59. gulp.task('css', function(cb){
  60. // app css
  61. plugins.sass(vendorFiles.styles.concat(appFiles.styles), {
  62. outputStyle: sassStyle, sourcemap: sourceMap, precision: 2
  63. })
  64. // .pipe(plugins.concat('style.min.css'))
  65. .pipe(plugins.autoprefixer({
  66. browsers: ['last 2 versions'],
  67. cascade: false
  68. }))
  69. // .pipe(isProduction ? plugins.cssmin() : gutil.noop())
  70. .pipe(plugins.size())
  71. .on('error', function(err){
  72. new gutil.PluginError('CSS', err, {showStack: true});
  73. })
  74. .pipe(plugins.notify())
  75. .pipe(plugins.rename({suffix: '.min'}))
  76. .pipe(gulp.dest(paths.styles.dest));
  77. cb()
  78. });
  79. gulp.task('jquery.share.js', function () {
  80. return gulp.src(appFiles.jqueryShare)
  81. .pipe(concat('jquery.share.js'))
  82. .pipe(isProduction ? plugins.uglify() : gutil.noop())
  83. .pipe(plugins.size())
  84. .pipe(plugins.notify())
  85. .pipe(plugins.rename({suffix: '.min'}))
  86. .pipe(gulp.dest(paths.scripts.dest));
  87. });
  88. gulp.task('share.js', function () {
  89. return gulp.src(appFiles.socialShare)
  90. .pipe(concat('social-share.js'))
  91. .pipe(isProduction ? plugins.uglify() : gutil.noop())
  92. .pipe(plugins.size())
  93. .pipe(plugins.notify())
  94. .pipe(plugins.rename({suffix: '.min'}))
  95. .pipe(gulp.dest(paths.scripts.dest));
  96. });
  97. gulp.task('fonts', function(){
  98. return gulp.src(appFiles.fonts)
  99. .pipe(gulp.dest(paths.fonts.dest));
  100. });
  101. gulp.task('watch', gulp.parallel('css', 'jquery.share.js', 'share.js', 'fonts'), function () {
  102. gulp.watch(appFiles.styles, ['css']).on('change', function (evt) {
  103. changeEvent(evt);
  104. });
  105. gulp.watch(paths.scripts.src + '*.js', ['jquery.share.js', 'share.js']).on('change', function (evt) {
  106. changeEvent(evt);
  107. });
  108. });
  109. gulp.task('default', gulp.parallel( 'css', 'jquery.share.js', 'share.js', 'fonts' ));