-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
72 lines (53 loc) · 1.9 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const gulp = require('gulp'); // плагин галпа
const del = require('del'); // для удаления
const packageJson = require('./package.json');
const electron = require('gulp-electron');
// path = require('path'),
// gp_concat = require('gulp-concat'),
// gp_rename = require('gulp-rename'),
// gp_uglify = require('gulp-uglify'), // для сжатия файлов
// cleanCSS = require('gulp-clean-css');
const isDevelopment = !process.env.NODE_ENV || process.env.NODE_ENV == 'development';
gulp.task('hello', function () {
console.log('hello');
});
gulp.task('clean', function () {
return del('dist')
});
// gulp.task('copy', function () {
// gulp.src('')
// .pipe(gulp.dest(''));
// gulp.src('')
// .pipe(gulp.dest(''));
// });
// gulp.task('default', function () {
// return gulp.src('public/**/*.*.{js,css}')
// .on('data', function (file) {
// // console.log(file);
// })
// .pipe(gulp.dest(function (file) { // пакуем нужные файлы в нужные директории
// console.log(path.extname(file.relative));
// return path.extname(file.relative) == '.js' ? 'js' :
// path.extname(file.relative) == '.css' ? 'css' : 'dest';
// }))
// });
//
// gulp.task('minify-css', function () {
// return gulp.src([
// ])
// .pipe(gp_concat('concat.css'))
// .pipe(cleanCSS({compatibility: 'ie8'}))
// .pipe(gulp.dest('./webapp/static/css/'));
// });
//
// gulp.task('js-fef', function () {
// return gulp.src([
//
// ])
// .pipe(gp_concat('concat.js'))
// .pipe(gulp.dest('./webapp/static/js'))
// .pipe(gp_rename('uglify.js'))
// .pipe(gp_uglify())
// .pipe(gulp.dest('./webapp/static/js'));
// });
// gulp.task('default', ['js-fef', 'minify-css','copy'], function () {});