Skip to content

Commit 55de60a

Browse files
committed
Merge pull request microsoft#68 from johnnyreilly/master
Replaced gulp-connect with express to fix caching
2 parents f206e7c + 6688747 commit 55de60a

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

es6-babel-react-flux-karma/gulp/.eslintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"no-shadow": 2,
3333
"no-shadow-restricted-names": 2,
3434
"no-spaced-func": 2,
35-
"no-trailing-spaces": 2,
35+
"no-trailing-spaces": 1,
3636
"no-undef-init": 2,
3737
"no-unused-expressions": 2,
3838
"no-use-before-define": [2, "nofunc"],

es6-babel-react-flux-karma/gulp/inject.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function injectIndex(options) {
2121
var jsCssGlob = 'dist/**/*.{js,css}';
2222

2323
function checkForInitialFilesThenRun() {
24-
glob(jsCssGlob, options, function (er, files) {
24+
glob(jsCssGlob, function (er, files) {
2525
var filesWeNeed = ['dist/scripts/main', 'dist/scripts/vendor'/*, 'dist/styles/main'*/];
2626

2727
function fileIsPresent(fileWeNeed) {

es6-babel-react-flux-karma/gulpFile.js

+8-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
var gulp = require('gulp');
55
var gutil = require('gulp-util');
6-
var connect = require('gulp-connect');
76
var eslint = require('gulp-eslint');
87
var webpack = require('./gulp/webpack');
98
var staticFiles = require('./gulp/staticFiles');
@@ -39,14 +38,15 @@ gulp.task('lint', function () {
3938
.pipe(eslint.format());
4039
});
4140

42-
gulp.task('watch', ['delete-dist'], function() {
41+
gulp.task('watch', ['delete-dist'], function(done) {
4342
process.env.NODE_ENV = 'development';
4443
Promise.all([
4544
webpack.watch()//,
4645
//less.watch()
4746
]).then(function() {
4847
gutil.log('Now that initial assets (js and css) are generated inject will start...');
4948
inject.watch();
49+
done();
5050
}).catch(function(error) {
5151
gutil.log('Problem generating initial assets (js and css)', error);
5252
});
@@ -57,8 +57,10 @@ gulp.task('watch', ['delete-dist'], function() {
5757
});
5858

5959
gulp.task('watch-and-serve', ['watch'], function() {
60-
connect.server({
61-
root: './dist',
62-
port: 8080
63-
});
60+
// local as not required for build
61+
var express = require('express')
62+
var app = express()
63+
64+
app.use(express.static('dist', {'index': 'index.html'}))
65+
app.listen(8080);
6466
});

es6-babel-react-flux-karma/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
3434
"babel-preset-react": "^6.0.0",
3535
"del": "^2.0.2",
3636
"eslint": "^1.6.0",
37+
"express": "^4.13.3",
3738
"flux": "^2.0.3",
3839
"glob": "^5.0.15",
3940
"gulp": "^3.9.0",
4041
"gulp-autoprefixer": "^3.1.0",
4142
"gulp-cached": "^1.1.0",
42-
"gulp-connect": "^2.2.0",
4343
"gulp-cssmin": "^0.1.7",
4444
"gulp-eslint": "^1.0.0",
4545
"gulp-if": "^2.0.0",
@@ -61,7 +61,6 @@
6161
"karma-webpack": "^1.7.0",
6262
"phantomjs": "^1.9.17",
6363
"react": "^0.14.3",
64-
"ts-loader": "^0.6.0",
6564
"react-addons-test-utils": "^0.14.3",
6665
"react-dom": "^0.14.3",
6766
"ts-loader": "^0.7.1",

0 commit comments

Comments
 (0)