forked from mauriciopoppe/PojoViz
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile-bk.js
183 lines (161 loc) · 4.34 KB
/
gulpfile-bk.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
// libs
var browserSync = require('browser-sync');
var watchify = require('watchify');
var browserify = require('browserify');
var source = require('vinyl-source-stream');
var exec = require('child_process').exec;
var pkg = require('./package.json');
var path = require('path');
var production = process.env.NODE_ENV === 'production';
// gulp extras
var gulp = require('gulp');
var mocha = require('gulp-mocha');
var git = require('gulp-git');
var compass = require('gulp-compass');
var concat = require('gulp-concat');
var bump = require('gulp-bump');
var rename = require('gulp-rename');
var filter = require('gulp-filter');
var gulpif = require('gulp-if');
var uglify = require('gulp-uglify');
var vulcanize = require('gulp-vulcanize');
var useref = require('gulp-useref');
var tagVersion = require('gulp-tag-version');
var useWatchify;
function run(bundler, minify) {
var output = './build/';
if (minify) {
bundler = bundler.plugin('minifyify', {
map: pkg.name + '.map.json',
output: output + pkg.name + '.map.json'
});
}
console.time('build');
return bundler
.bundle({
debug: true,
standalone: 'pojoviz'
})
.on('error', function (e) {
console.log(e);
})
.pipe(source(pkg.name + (minify ? '.min' : '') + '.js'))
.pipe(gulp.dest(output))
.on('end', function () {
console.timeEnd('build');
});
}
gulp.task('browserify:app', function () {
var method = useWatchify ? watchify : browserify;
var bundler = method({
entries: ['./src/index.js'],
extensions: ['js']
});
var bundle = function () {
if (!useWatchify) {
// concat + min
run(bundler, true);
}
// concat
return run(bundler);
};
if (useWatchify) {
bundler.on('update', bundle);
}
return bundle();
});
gulp.task('browserify:render', function () {
return browserify({
entries: './src/renderer/index.js',
extensions: ['js']
})
.bundle({
debug: true,
standalone: 'pojovizRenderers'
})
.pipe(source('pojoviz-renderers.js'))
.pipe(gulp.dest('./build'));
});
gulp.task('browserSync', ['browserify'], function () {
browserSync.init(['./build/*'], {
server: {
baseDir: './'
}
});
});
gulp.task('compass', function () {
return gulp.src('./public/sass/*.scss')
.pipe(compass({
config_file: 'compass.rb',
css: 'public/css',
sass: 'public/sass'
}))
.on('error', function (e) {
console.log(e);
})
.pipe(browserSync.reload({
stream: true
}));
});
gulp.task('testOnce', function () {
return gulp.src('./test/')
.pipe(mocha({
reporter: 'spec'
}));
});
function createTag(type, cb) {
gulp.src(['./package.json', './bower.json'])
.pipe(bump({ type: type }))
.pipe(gulp.dest('./'))
.pipe(git.commit('bump version'))
.pipe(filter('package.json'))
.pipe(tagVersion());
exec('./push.sh', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
cb(err);
});
}
gulp.task('useWatchify', function () {
useWatchify = true;
});
gulp.task('watch', ['useWatchify', 'browserSync'], function () {
gulp.watch('public/sass/**', ['compass']);
gulp.watch('test/**', ['testOnce']);
});
gulp.task('rename', function () {
return gulp.src('public/index.html')
.pipe(rename('vulcanize.html'))
.pipe(gulp.dest('public/'));
});
gulp.task('vendor', ['rename'], function () {
var assets = useref.assets();
return gulp.src('public/vulcanize.html')
.pipe(assets)
.pipe(gulpif('*.js', uglify()))
.pipe(assets.restore())
.pipe(useref())
.pipe(gulp.dest('public/'));
});
gulp.task('vulcanize', ['vendor'], function () {
return gulp.src('./public/vulcanize.html')
.pipe(vulcanize({
dest: './public/vulcanize.html',
}))
.pipe(gulp.dest('./public/'));
});
// main tasks
gulp.task('build', ['browserify:app', 'compass', 'vulcanize']);
gulp.task('release:major', function (cb) { createTag('major', cb); });
gulp.task('release:minor', function (cb) { createTag('minor', cb); });
gulp.task('release:patch', function (cb) { createTag('patch', cb); });
gulp.task('test', function () {
var watcher = gulp.watch(
['src/**/*.js', 'test/*.js'],
['testOnce']
);
// watcher.on('change', function(event) {
// console.log('File '+event.path+' was '+event.type+', running tasks...');
// });
});
gulp.task('default', ['watch']);