forked from facebookarchive/draft-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
134 lines (120 loc) · 3.21 KB
/
gulpfile.js
File metadata and controls
134 lines (120 loc) · 3.21 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
/**
* Copyright (c) 2013-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
'use strict';
var babel = require('gulp-babel');
var del = require('del');
var concatCSS = require('gulp-concat-css');
var derequire = require('gulp-derequire');
var flatten = require('gulp-flatten');
var gulp = require('gulp');
var gulpUtil = require('gulp-util');
var runSequence = require('run-sequence');
var webpackStream = require('webpack-stream');
var babelOpts = require('./scripts/babel/default-options');
var babelPluginDEV = require('fbjs-scripts/babel/dev-expression');
var gulpCheckDependencies = require('fbjs-scripts/gulp/check-dependencies');
var paths = {
dist: 'dist',
lib: 'lib',
src: [
'src/**/*.js',
'!src/**/__tests__/**/*.js',
'!src/**/__mocks__/**/*.js'
],
css: [
'src/**/*.css'
]
};
// Ensure that we use another plugin that isn't specified in the default Babel
// options, converting __DEV__.
babelOpts.plugins.push(babelPluginDEV);
var buildDist = function(opts) {
var webpackOpts = {
debug: opts.debug,
externals: {
immutable: 'Immutable',
react: 'React',
'react-dom': 'ReactDOM',
},
output: {
filename: opts.output,
libraryTarget: 'var',
library: 'Draft'
},
plugins: [
new webpackStream.webpack.optimize.OccurenceOrderPlugin(),
new webpackStream.webpack.optimize.DedupePlugin()
]
};
if (!opts.debug) {
webpackOpts.plugins.push(
new webpackStream.webpack.optimize.UglifyJsPlugin({
compress: {
hoist_vars: true,
screw_ie8: true,
warnings: false
}
})
);
}
return webpackStream(webpackOpts, null, function(err, stats) {
if (err) {
throw new gulpUtil.PluginError('webpack', err);
}
if (stats.compilation.errors.length) {
gulpUtil.log('webpack', '\n' + stats.toString({colors: true}));
}
});
};
gulp.task('clean', function() {
return del([paths.dist, paths.lib]);
});
gulp.task('modules', function() {
return gulp
.src(paths.src)
.pipe(babel(babelOpts))
.pipe(flatten())
.pipe(gulp.dest(paths.lib));
});
gulp.task('css', function() {
return gulp
.src(paths.css)
.pipe(concatCSS('Draft.css'))
.pipe(gulp.dest(paths.dist));
});
gulp.task('dist', ['modules', 'css'], function() {
var opts = {
debug: true,
output: 'Draft.js'
};
return gulp.src('./lib/Draft.js')
.pipe(buildDist(opts))
.pipe(derequire())
.pipe(gulp.dest(paths.dist));
});
gulp.task('dist:min', ['modules'], function() {
var opts = {
debug: false,
output: 'Draft.min.js',
};
return gulp.src('./lib/Draft.js')
.pipe(buildDist(opts))
.pipe(gulp.dest(paths.dist));
});
gulp.task('check-dependencies', function() {
return gulp
.src('package.json')
.pipe(gulpCheckDependencies());
});
gulp.task('watch', function() {
gulp.watch(paths.src, ['modules']);
});
gulp.task('default', function(cb) {
runSequence('check-dependencies', 'clean', 'modules', ['dist', 'dist:min'], cb);
});