Added standalone option to Filer's browserify build step
This commit is contained in:
parent
e7e44bb921
commit
73b6379449
|
@ -56,20 +56,19 @@ module.exports = function(grunt) {
|
||||||
src: "./src/index.js",
|
src: "./src/index.js",
|
||||||
dest: "./dist/filer.js",
|
dest: "./dist/filer.js",
|
||||||
options: {
|
options: {
|
||||||
standalone: 'Filer',
|
|
||||||
browserifyOptions: {
|
browserifyOptions: {
|
||||||
builtins: false,
|
builtins: false,
|
||||||
commondir: false
|
commondir: false
|
||||||
},
|
},
|
||||||
|
bundleOptions: {
|
||||||
|
standalone: 'Filer'
|
||||||
|
},
|
||||||
exclude: ["./node_modules/request/index.js"]
|
exclude: ["./node_modules/request/index.js"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
filerTest: {
|
filerTest: {
|
||||||
src: "./tests/index.js",
|
src: "./tests/index.js",
|
||||||
dest: "./dist/filer-test.js",
|
dest: "./dist/filer-test.js"
|
||||||
options: {
|
|
||||||
standalone: 'FilerTest'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue