From 73b6379449818b6d6d6c050b8ddef9fc545ccb5a Mon Sep 17 00:00:00 2001 From: Kieran Sedgwick Date: Wed, 28 May 2014 14:48:00 -0400 Subject: [PATCH] Added standalone option to Filer's browserify build step --- gruntfile.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gruntfile.js b/gruntfile.js index bd525bb..8113ed4 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -56,20 +56,19 @@ module.exports = function(grunt) { src: "./src/index.js", dest: "./dist/filer.js", options: { - standalone: 'Filer', browserifyOptions: { builtins: false, commondir: false }, + bundleOptions: { + standalone: 'Filer' + }, exclude: ["./node_modules/request/index.js"] } }, filerTest: { src: "./tests/index.js", - dest: "./dist/filer-test.js", - options: { - standalone: 'FilerTest' - } + dest: "./dist/filer-test.js" } },