From e190f4c5768ced1e399a3e5e1b255e2a92fb27ec Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Tue, 21 Nov 2017 14:29:21 -0800 Subject: [PATCH] Remove --no-bundle-external from style-spec build --- src/style-spec/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style-spec/package.json b/src/style-spec/package.json index ddf5b0f04bd..43b45cdec91 100644 --- a/src/style-spec/package.json +++ b/src/style-spec/package.json @@ -12,7 +12,7 @@ "main": "./dist/index.js", "scripts": { "copy-flow-typed": "cp -R ../../flow-typed .", - "build": "../../node_modules/.bin/browserify style-spec.js --no-builtins --no-bundle-external --insert-global-vars=\"__filename,__dirname\" --standalone=mapboxGlStyleSpecification | ../../node_modules/.bin/derequire > dist/index.js", + "build": "../../node_modules/.bin/browserify style-spec.js --no-builtins --insert-global-vars=\"__filename,__dirname\" --standalone=mapboxGlStyleSpecification | ../../node_modules/.bin/derequire > dist/index.js", "prepublish": "in-publish && yarn copy-flow-typed && yarn build || not-in-publish", "postpublish": "in-publish && rm -r flow-typed dist/index.js || not-in-publish" },