From 3c8cd087c5352b92fb7f1090b0c39b29cfa7a31a Mon Sep 17 00:00:00 2001 From: Behind The Math Date: Tue, 23 Jan 2018 19:40:13 -0500 Subject: [PATCH] Use double quotes in CLI arguments Single quotes don't work in all environments. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a317664..173d4b3 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "lint": "jscs . && jshint . --exclude-path .gitignore", "standalone": "browserify index.js --standalone Pjax > pjax.js", "build-debug": "browserify index.js --debug --standalone Pjax > pjax.js", - "tests": "tape -r ./tests/setup.js './tests/**/*.js'", + "tests": "tape -r ./tests/setup.js \"./tests/**/*.js\"", "test": "npm run lint && npm run tests | tap-spec", "coverage-tests": "npm run tests | tap-nyc", "coverage": "nyc -x \"tests/**\" npm run coverage-tests",