-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
133 lines (115 loc) · 3.68 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
var gulp = require('gulp');
var nodemon = require('gulp-nodemon');
var jshint = require('gulp-jshint');
var gutil = require('gulp-util');
var bower = require('bower');
var concat = require('gulp-concat');
var sass = require('gulp-sass');
var minifyCss = require('gulp-minify-css');
var rename = require('gulp-rename');
var sh = require('shelljs');
var notify = require('gulp-notify');
var useref = require('gulp-useref');
var paths = {
build : './build/',
sass: [
//'./scss/*.scss',
'./www/css/*.scss'
],
scripts: [
'./www/js/**/*.js',
'./www/js/app.js'
],
html: [
// './www/app/views/partials/*.html',
// './www/app/views/partials/**/*.html',
'./www/index.html',
'./www/templates/*.html'
],
server: {
js: ['./lib/**/*.js'],
specs: ['./server.js']
}
};
// A display error function, to format and make custom errors more uniform
// Could be combined with gulp-util or npm colors for nicer output
var displayError = function(error) {
// Initial building up of the error
var errorString = '[' + error.plugin + ']';
errorString += ' ' + error.message.replace("\n",''); // Removes new line at the end
// If the error contains the filename or line number add it to the string
if(error.fileName)
errorString += ' in ' + error.fileName;
if(error.lineNumber)
errorString += ' on line ' + error.lineNumber;
// This will output an error like the following:
// [gulp-sass] error message in file_name on line 1
console.error(errorString);
}
gulp.task('sass', function() {
gulp.src(paths.sass)
.pipe(sass({ style: 'expanded' }))
.pipe(gulp.dest(paths.build))
.pipe(minifyCss({
keepSpecialComments: 0
}))
.pipe(useref())
.pipe(gulp.dest('./www/css/'))
.pipe(gulp.dest(paths.build))
.on("error", notify.onError(function (error) {
return "Message to the notifier: " + error.message;
}));
});
gulp.task('scripts', function() {
return gulp.src(paths.scripts)
.pipe(gulp.dest(paths.build))
.on("error", notify.onError(function (error) {
return "Message to the notifier: " + error.message;
}));
});
gulp.task('html', function() {
return gulp.src(paths.html)
.pipe(gulp.dest(paths.build))
.on("error", notify.onError(function (error) {
return "Message to the notifier: " + error.message;
}));
});
gulp.task('watch', function() {
gulp.watch(paths.sass, ['sass']);
gulp.watch(paths.html, ['html']);
gulp.watch(paths.scripts, ['lint', 'scripts']);
});
gulp.task('install', ['git-check'], function() {
return bower.commands.install()
.on('log', function(data) {
gutil.log('bower', gutil.colors.cyan(data.id), data.message);
});
});
gulp.task('git-check', function(done) {
if (!sh.which('git')) {
console.log(
' ' + gutil.colors.red('Git is not installed.'),
'\n Git, the version control system, is required to download Ionic.',
'\n Download git here:', gutil.colors.cyan('http://git-scm.com/downloads') + '.',
'\n Once git is installed, run \'' + gutil.colors.cyan('gulp install') + '\' again.'
);
process.exit(1);
}
done();
});
gulp.task('lint', function () {
gulp.src(paths.scripts)
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'))
.on("error", notify.onError(function (error) {
return "Message to the notifier: " + error.message;
}));
});
gulp.task('server', function () {
nodemon({ nodeArgs: ['--debug'], script: paths.server.specs,
ext: 'js html',
env: { 'NODE_ENV': 'development' } ,
ignore: ['./build/**'],
})
});
gulp.task('default', ['lint', 'sass', 'html', 'scripts', 'watch']);