Skip to content

Commit 4172472

Browse files
rueckstiesskangas
authored andcommitted
re-enable watchify and depend on INT-203 branch of schema
1 parent 4b3dc2f commit 4172472

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

scout-ui/gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ gulp.task('testserver', function() {
7171
});
7272

7373
gulp.task('develop', ['pages', 'assets', 'less'], function() {
74-
gulp.watch(['src/*.less', '../scout-style/*.less'], ['less']);
74+
gulp.watch(['src/{*,**}.less', '../scout-style/*.less'], ['less']);
7575
gulp.watch(['src/*.jade'], ['pages']);
7676
gulp.watch(['src/img/*', '../scout-style/images/*'], ['assets']);
7777

@@ -80,12 +80,12 @@ gulp.task('develop', ['pages', 'assets', 'less'], function() {
8080
/**
8181
* Gulp's [fast browserify builds recipe](http://git.io/iiCk-A)
8282
*/
83-
var bundler = browserify('./src/index.js', {
83+
var bundler = watchify(browserify('./src/index.js', {
8484
cache: {},
8585
packageCache: {},
8686
fullPaths: true,
8787
debug: false
88-
})
88+
}))
8989
.transform('jadeify')
9090
.on('update', rebundle);
9191

scout-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"lodash": "^3.8.0",
6262
"moment": "^2.8.2",
6363
"mongodb-extended-json": "^1.3.1",
64-
"mongodb-schema": "^2.2.1",
64+
"mongodb-schema": "git://github.com/mongodb-js/mongodb-schema.git#INT-203-arrays",
6565
"numeral": "^1.5.3",
6666
"octicons": "https://github.com/github/octicons/archive/v2.2.0.tar.gz",
6767
"phantomjs-polyfill": "0.0.1",

0 commit comments

Comments
 (0)