diff --git a/.gitignore b/.gitignore index 873f0ee1b..5696ce974 100644 --- a/.gitignore +++ b/.gitignore @@ -4,5 +4,6 @@ node_modules npm-debug.log dist/*.js dist/*.css +dist/*.map dist/img/*.svg data/data.js diff --git a/development_server.js b/development_server.js index 797829ef1..c55e2d938 100644 --- a/development_server.js +++ b/development_server.js @@ -38,7 +38,7 @@ function build() { if (process.argv[2] === 'develop') { build(); - gaze('modules/**.js', function(err, watcher) { + gaze('modules/**/**.js', function(err, watcher) { watcher.on('all', function() { build(); }); diff --git a/package.json b/package.json index 82049d5a2..1ee030571 100644 --- a/package.json +++ b/package.json @@ -38,10 +38,10 @@ "brfs": "1.4.3", "chai": "~3.5.0", "d3": "4.2.1", - "ecstatic": "2.1.0", + "ecstatic": "~2.1.0", "editor-layer-index": "git://github.com/osmlab/editor-layer-index.git#gh-pages", "eslint": "~3.3.1", - "gaze": "1.1.1", + "gaze": "~1.1.1", "glob": "~7.0.5", "happen": "~0.3.1", "js-yaml": "~3.6.1",