forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
156 lines (136 loc) · 3.1 KB
/
Copy pathgulpfile.js
File metadata and controls
156 lines (136 loc) · 3.1 KB
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
const gulp = require('gulp')
const babel = require('gulp-babel')
const cache = require('gulp-cached')
const notify_ = require('gulp-notify')
const uglify = require('gulp-uglify')
const webpack = require('webpack-stream')
const del = require('del')
const babelOptions = {
presets: ['es2015', 'react'],
plugins: [
'transform-async-to-generator',
'transform-object-rest-spread',
'transform-class-properties',
'transform-runtime'
]
}
gulp.task('compile', [
'compile-bin',
'compile-lib',
'compile-server',
'compile-client'
])
gulp.task('compile-bin', () => {
return gulp.src('bin/*')
.pipe(cache('bin'))
.pipe(babel(babelOptions))
.pipe(gulp.dest('dist/bin'))
.pipe(notify('Compiled binaries'))
})
gulp.task('compile-lib', () => {
return gulp.src('lib/**/*.js')
.pipe(cache('lib'))
.pipe(babel(babelOptions))
.pipe(gulp.dest('dist/lib'))
.pipe(notify('Compiled lib files'))
})
gulp.task('compile-server', () => {
return gulp.src('server/**/*.js')
.pipe(cache('server'))
.pipe(babel(babelOptions))
.pipe(gulp.dest('dist/server'))
.pipe(notify('Compiled server files'))
})
gulp.task('compile-client', () => {
return gulp.src('client/**/*.js')
.pipe(cache('client'))
.pipe(babel(babelOptions))
.pipe(gulp.dest('dist/client'))
.pipe(notify('Compiled client files'))
})
gulp.task('build', [
'build-dev-client',
])
gulp.task('build-release', [
'build-release-client'
])
gulp.task('build-dev-client', ['compile-lib', 'compile-client'], () => {
return gulp
.src('dist/client/next-dev.js')
.pipe(webpack({
quiet: true,
output: { filename: 'next-dev.bundle.js' }
}))
.pipe(gulp.dest('dist/client'))
.pipe(notify('Built dev client'))
})
gulp.task('build-release-client', ['compile-lib', 'compile-client'], () => {
return gulp
.src('dist/client/next.js')
.pipe(webpack({
quiet: true,
output: { filename: 'next.bundle.js' },
plugins: [
new webpack.webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
}
})
]
}))
.pipe(uglify({ preserveComments: 'license' }))
.pipe(gulp.dest('dist/client'))
.pipe(notify('Built release client'))
})
gulp.task('watch', [
'watch-bin',
'watch-lib',
'watch-server',
'watch-client'
])
gulp.task('watch-bin', function () {
return gulp.watch('bin/*', [
'compile-bin'
])
})
gulp.task('watch-lib', function () {
return gulp.watch('lib/**/*.js', [
'compile-lib',
'build-dev-client'
])
})
gulp.task('watch-server', function () {
return gulp.watch('server/**/*.js', [
'compile-server'
])
})
gulp.task('watch-client', function () {
return gulp.watch('client/**/*.js', [
'compile-client',
'build-dev-client'
])
})
gulp.task('clean', () => {
return del(['dist'])
})
gulp.task('default', [
'compile',
'build',
'watch'
])
gulp.task('release', [
'compile',
'build-release'
])
// avoid logging to the console
// that we created a notification
notify_.logLevel(0)
// notification helper
function notify (msg) {
return notify_({
title: '▲ Next',
message: msg,
icon: false,
onLast: true
})
}