-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
156 lines (136 loc) · 4.04 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
var gulp = require('gulp');
var path = require('path');
var $ = require('gulp-load-plugins')();
var del = require('del');
var jest = require('gulp-jest');
// set variable via $ gulp --type production
var environment = process.env.NODE_ENV || 'development';
var isProduction = environment === 'production';
var webpackConfig = require('./webpack.config.js')[environment];
var config = require(path.resolve(__dirname, 'package')).devConfig;
var port = $.util.env.port || 9999;
var app = 'app/';
var dist = 'dist/';
// https://github.com/ai/autoprefixer
var autoprefixerBrowsers = [
'ie >= 9',
'ie_mob >= 10',
'ff >= 30',
'chrome >= 34',
'safari >= 6',
'opera >= 23',
'ios >= 6',
'android >= 4.4',
'bb >= 10'
];
gulp.task('scripts', function() {
return gulp.src(webpackConfig.entry)
.pipe($.webpack(webpackConfig))
.pipe(isProduction ? $.uglifyjs() : $.util.noop())
.pipe(gulp.dest(dist + 'js/'))
.pipe($.size({ title : 'js' }))
.pipe($.connect.reload());
});
// copy html from app to dist
gulp.task('html', function() {
return gulp.src(app + 'index.html')
.pipe($.preprocess({context : { IS_PRODUCTION : isProduction }}))
.pipe(gulp.dest(dist))
.pipe($.size({ title : 'html' }))
.pipe($.connect.reload());
});
gulp.task('styles',function(cb) {
// convert stylus to css
return gulp.src(app + 'stylus/main.styl')
.pipe($.stylus({
// only compress if we are in production
compress: isProduction,
// include 'normal' css into main.css
'include css' : true
}))
.pipe($.autoprefixer({browsers: autoprefixerBrowsers}))
.pipe(gulp.dest(dist + 'css/'))
.pipe($.size({ title : 'css' }))
.pipe($.connect.reload());
});
// add livereload on the given port
gulp.task('serve', function() {
$.connect.server({
root: dist,
port: port,
livereload: {
port: 35729
}
});
});
// copy images
gulp.task('images', function(cb) {
return gulp.src(app + 'images/**/*.{png,jpg,jpeg,gif}')
.pipe($.size({ title : 'images' }))
.pipe(gulp.dest(dist + 'images/'));
});
// copy data folder
gulp.task('data', function(cb) {
return gulp.src(app + 'scripts/data/**/*.json')
.pipe(gulp.dest(dist + 'js/data'));
});
// copy css assets folder
gulp.task('cssAssets', function(cb) {
return gulp.src(app + 'bower_components/select2/**/*.{png,gif}')
.pipe(gulp.dest(dist + 'css'));
});
// copy css assets folder
gulp.task('fonts', function(cb) {
return gulp.src(app + 'bower_components/elegant-icons/fonts/**/*.{eot,svg,ttf,woff}')
.pipe(gulp.dest(dist + 'fonts'));
});
// copy css assets folder
gulp.task('favicon', function(cb) {
return gulp.src(app + '*.{ico,png}')
.pipe(gulp.dest(dist));
});
// watch styl, html and js file changes
gulp.task('watch', function() {
gulp.watch(app + 'stylus/*.styl', ['styles']);
gulp.watch(app + 'index.html', ['html']);
gulp.watch(app + 'scripts/**/*.js', ['scripts']);
gulp.watch(app + 'scripts/**/*.jsx', ['scripts']);
});
// remove bundels
gulp.task('clean', function(cb) {
del([dist], cb);
});
gulp.task('deploy', function() {
return gulp.src(dist + '**')
.pipe($.rsync({
root: 'dist',
recursive: true,
compress: true,
progress: true,
hostname: config.rsync.host,
destination: config.rsync.dest
}));
});
// by default build project and then watch files in order to trigger livereload
gulp.task('default', ['build', 'serve', 'watch']);
// waits until clean is finished then builds the project
gulp.task('build', ['clean'], function(){
gulp.start(['images','data', 'cssAssets', 'fonts', 'html','scripts','styles', 'favicon']);
});
gulp.task('test', function () {
return gulp.src('app').pipe(jest({
scriptPreprocessor: 'utils/preprocessor.js',
unmockedModulePathPatterns: [
"node_modules/react"
],
testDirectoryName: "__tests__",
testPathIgnorePatterns: [
"node_modules"
],
moduleFileExtensions: [
"js",
"json",
"react"
]
}));
});