From fcc84c7abc143d667168cf1e30a83cc599795a16 Mon Sep 17 00:00:00 2001 From: Mike Bostock Date: Tue, 15 Mar 2016 10:20:44 -0700 Subject: [PATCH] Use glob. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bde0b7dd..db35c2dc 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ }, "scripts": { "pretest": "rm -rf build && mkdir build && json2module package.json > build/package.js && bin/rollup-node", - "test": "tape test/**/*-test.js", + "test": "tape 'test/**/*-test.js'", "prepublish": "npm run test && bin/rollup && uglifyjs build/d3.js -c -m -o build/d3.min.js", "postpublish": "VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && cp -v build/d3.js ../d3.github.com/d3.v${VERSION}.js && cp -v build/d3.min.js ../d3.github.com/d3.v${VERSION}.min.js && cd ../d3.github.com && git add d3.v${VERSION}.js d3.v${VERSION}.min.js && git commit -m \"d3 ${VERSION}\" && git push && cd - && zip -j build/d3.zip -- LICENSE README.md build/d3.js build/d3.min.js" },