forked from instructure/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
165 lines (142 loc) · 4.67 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
157
158
159
160
161
162
163
164
/*
* Copyright (C) 2018 - present Instructure, Inc.
*
* This file is part of Canvas.
*
* Canvas is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free
* Software Foundation, version 3 of the License.
*
* Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
const gulp = require('gulp')
const gulpPlugins = require('gulp-load-plugins')()
const merge = require('merge-stream')
const rename = require('gulp-rename')
const DIST = 'public/dist'
const STUFF_TO_REV = [
'public/fonts/**/*.{eot,otf,svg,ttf,woff,woff2}',
'public/images/**/*',
// These files have links in their css to images from their own dir
'public/javascripts/vendor/slickgrid/images/*',
// Include *everything* from plugins
// so we don't have to worry about their internals
// TODO: do we need these if we are all-webpack?
// exclude .js here
'public/plugins/**/*.*',
]
gulp.task('rev', () => {
const timezonefilesToIgnore = [
'loaded.js',
'locales.js',
'rfc822.js',
'synopsis.js',
'zones.js',
'de_DE.js',
'fr_FR.js',
'fr_CA.js',
'he_IL.js',
'pl_PL.js',
'**/index.js',
].map(f => `!./node_modules/timezone/${f}`)
const timezoneFileGlobs = ['./node_modules/timezone/**/*.js'].concat(timezonefilesToIgnore)
const timezonesStream = gulp
.src(timezoneFileGlobs, {base: './node_modules'})
.pipe(gulpTimezonePlugin())
const customTimezoneStream = gulp
.src('./public/javascripts/custom_timezone_locales/*.js')
.pipe(rename(path => path.dirname = '/timezone'))
.pipe(gulpTimezonePlugin())
return makeIE11Polyfill().then((IE11PolyfillCode) => {
let stream = merge(
timezonesStream,
customTimezoneStream,
gulpPlugins.file('ie11-polyfill.js', IE11PolyfillCode, { src: true }),
gulp.src(STUFF_TO_REV, {
base: 'public', // tell it to use the 'public' folder as the base of all paths
follow: true // follow symlinks, so it picks up on images inside plugins and stuff
}),
gulp.src([
'node_modules/tinymce/skins/lightgray/**/*',
], {
base: '.'
})
).pipe(gulpPlugins.rev())
if (process.env.NODE_ENV === 'production' || process.env.RAILS_ENV === 'production') {
const jsFilter = gulpPlugins.filter('**/*.js', {restore: true});
stream = stream.pipe(jsFilter)
.pipe(gulpPlugins.sourcemaps.init())
.pipe(gulpPlugins.uglify())
.pipe(gulpPlugins.sourcemaps.write('./maps'))
.pipe(jsFilter.restore)
}
return stream
.pipe(gulp.dest(DIST))
.pipe(gulpPlugins.rev.manifest())
.pipe(gulp.dest(DIST))
})
})
gulp.task('watch', () => gulp.watch(STUFF_TO_REV, ['rev']))
gulp.task('default', ['rev', 'watch'])
function gulpTimezonePlugin () {
const through = require('through2')
const wrapTimezone = (code, timezoneName) =>
`// this was autogenerated by gulpTimezonePlugin from the timezone source in node_modules
(window.__PRELOADED_TIMEZONE_DATA__ || (window.__PRELOADED_TIMEZONE_DATA__ = {}))['${timezoneName}'] ${code.toString().replace('module.exports', '')}
`
return through.obj((file, encoding, callback) => {
if (file.isNull()) return callback(null, file)
if (file.isBuffer()) {
const timezoneName = file.path
.replace(/.*\/timezone\//, '')
.replace(/\.js$/, '')
file.contents = new Buffer(wrapTimezone(file.contents, timezoneName))
return callback(null, file)
}
})
}
function makeIE11Polyfill () {
const coreJsBuilder = require('core-js-builder')
const FEATURES_TO_POLYFILL = [
'es.promise.finally',
'es.array',
'es.function',
'es.map',
'es.number',
'es.number.is-integer',
'es.object.assign',
'es.object.is',
'es.promise',
'es.set',
'es.string.code-point-at',
'es.string.ends-with',
'es.string.from-code-point',
'es.string.includes',
'es.string.iterator',
'es.string.repeat',
'es.string.starts-with',
'es.symbol',
'es.weak-set',
'es.array.includes',
'es.object.entries',
'es.object.values',
'web.dom.collections'
]
return coreJsBuilder({
modules: FEATURES_TO_POLYFILL,
library: false,
umd: false
}).then(code =>
`/*
THIS FILE WAS AUTOGENERATED BY gulp in makeIE11Polyfill to polyfill the following features:
${FEATURES_TO_POLYFILL}
*/
${code}`
)
}