Removed node_modules from the build process.
This commit is contained in:
parent
cb24c38915
commit
730bc054d3
1 changed files with 7 additions and 8 deletions
15
Gruntfile.js
15
Gruntfile.js
|
@ -47,7 +47,8 @@ module.exports = function(grunt) {
|
|||
"require.js",
|
||||
"background.js",
|
||||
"installer.js",
|
||||
"**/*.png" //in case we add images at some point
|
||||
"./*.png", //in case we add images at some point
|
||||
"!node_modules/**"
|
||||
]
|
||||
});
|
||||
|
||||
|
@ -59,13 +60,11 @@ module.exports = function(grunt) {
|
|||
|
||||
grunt.registerTask("copyUnpacked", "Copies files to the build directory", function() {
|
||||
var srcPatterns = grunt.config.get("copy");
|
||||
srcPatterns.forEach(function(pattern) {
|
||||
var files = grunt.file.expandMapping(pattern, "./build/unpacked", {
|
||||
filter: "isFile"
|
||||
});
|
||||
files.forEach(function(f) {
|
||||
grunt.file.copy(f.src[0], f.dest);
|
||||
});
|
||||
var files = grunt.file.expandMapping(srcPatterns, "./build/unpacked", {
|
||||
filter: "isFile"
|
||||
});
|
||||
files.forEach(function(f) {
|
||||
grunt.file.copy(f.src[0], f.dest);
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue