diff options
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 5ac52f74e..f04fcac3a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -18,7 +18,8 @@ module.exports = function (grunt) { // Configurable paths var config = { app: 'app', - dist: 'dist' + dist: 'dist', + ui: 'node_modules/metamask-ui' }; grunt.initConfig({ @@ -29,7 +30,10 @@ module.exports = function (grunt) { // Watches files for changes and runs tasks based on the changed files watch: { js: { - files: ['<%= config.app %>/scripts/{,*/}*.js'], + files: [ + '<%= config.app %>/scripts/{,*/}*.js', + '<%= config.ui %>/{,*/}*.js', + ], options: { livereload: '<%= connect.options.livereload %>' }, |