Use same browserify options for each build

This commit is contained in:
Tankred Hase 2014-10-14 13:21:59 +02:00 committed by Felix Hammerl
parent 5ea660e5d4
commit c6c058c2dc
1 changed files with 2 additions and 6 deletions

View File

@ -175,11 +175,7 @@ module.exports = function(grunt) {
'test/main.js'
]
},
options: {
exclude: browserifyOpt.exclude,
ignore: ['buffer'],
browserifyOptions: browserifyOpt.browserifyOptions
}
options: browserifyOpt
}
},
@ -493,4 +489,4 @@ module.exports = function(grunt) {
grunt.registerTask('release-stable', ['dist', 'manifest-stable', 'compress']);
grunt.registerTask('default', ['release-dev']);
};
};