Skip to content
This repository was archived by the owner on Jun 10, 2020. It is now read-only.

Commit 8e5483e

Browse files
committed
Fix Gulpfile.
1 parent c857799 commit 8e5483e

File tree

1 file changed

+31
-27
lines changed

1 file changed

+31
-27
lines changed

Gulpfile.js

+31-27
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ var del = require('del');
55

66
var browserifyCreator = require('./pipeline/browserify');
77

8-
var args = require('yargs').alias('P', 'production')
9-
.alias('D', 'development')
10-
.alias('E', 'example').argv;
8+
var args = require('yargs')
9+
.alias('P', 'production')
10+
.alias('D', 'development')
11+
.alias('E', 'example').argv;
1112

1213
var envObject = {
1314
production: args.production,
@@ -20,17 +21,21 @@ var buildFunction = browserifyCreator(false, envObject, INFINITE_SOURCE);
2021

2122
gulp.task('build-bundle', buildFunction);
2223
gulp.task('cleanly-build-bundle', ['clean'], buildFunction);
23-
gulp.task('watch-develop-bundle', browserifyCreator(true, {development: true}, INFINITE_SOURCE));
24+
gulp.task(
25+
'watch-develop-bundle',
26+
browserifyCreator(true, { development: true }, INFINITE_SOURCE)
27+
);
2428

2529
// This task builds everything for release: the dist
2630
// folder is populated with react-infinite.js and
2731
// react-infinite.min.js, while the build folder is
2832
// provided with a copy of the source transpiled to ES5.
2933
gulp.task('release', ['cleanly-build-bundle'], function() {
3034
// Transpile CommonJS files to ES5 with React's tools.
31-
gulp.src(['./src/**/*.js', './src/**/*.jsx'])
32-
.pipe(babel())
33-
.pipe(gulp.dest('build'));
35+
gulp
36+
.src(['./src/**/*.js', './src/**/*.jsx'])
37+
.pipe(babel())
38+
.pipe(gulp.dest('build'));
3439
});
3540

3641
gulp.task('clean', function() {
@@ -40,31 +45,30 @@ gulp.task('clean', function() {
4045
// This task is used to build the examples. It is used
4146
// in the development watch function as well.
4247
gulp.task('examples', function() {
43-
gulp.src('./examples/*.jsx')
44-
.pipe(babel())
45-
.pipe(gulp.dest('examples'));
48+
gulp.src('./examples/*.jsx').pipe(babel()).pipe(gulp.dest('examples'));
4649
});
4750

4851
gulp.task('server', function() {
49-
gulp.src(__dirname)
50-
.pipe(server({
51-
port: 8080,
52-
directoryListing: true,
53-
livereload: {
54-
enable: true,
55-
filter: function(filename) {
56-
if (filename.match(__dirname + '/examples')) {
57-
return true;
58-
// The examples draw from /dist, which should change
59-
// when the source files change
60-
} else if (filename.match(__dirname + '/dist')) {
61-
return true;
62-
} else {
63-
return false;
64-
}
52+
gulp.src(__dirname).pipe(
53+
server({
54+
port: 8080,
55+
directoryListing: true,
56+
livereload: {
57+
enable: true,
58+
filter: function(filename) {
59+
if (filename.match(__dirname + '/examples')) {
60+
return true;
61+
// The examples draw from /dist, which should change
62+
// when the source files change
63+
} else if (filename.match(__dirname + '/dist')) {
64+
return true;
65+
} else {
66+
return false;
6567
}
6668
}
67-
}));
69+
}
70+
})
71+
);
6872
});
6973

7074
// This task is used for development. When run, it sets up

0 commit comments

Comments
 (0)