From e4606eedb39d8df8bb76c70213b0880d6619f36d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Mischler=20=28aka=20skarab=29?= Date: Sun, 22 Apr 2018 09:09:17 +0200 Subject: [PATCH] chore(pkg): remove quoted paths for test for windows compatibility (#102) --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 41800448..285c5ea2 100644 --- a/package.json +++ b/package.json @@ -6,9 +6,9 @@ "main": "csg.js", "scripts": { "build-docs": "./node_modules/.bin/jsdoc -c jsdoc.json", - "docs": "jsdoc2md --files 'src/**/*.js' > docs/api.md", - "test-api": "nyc ava './src/**/*.test.js' --concurrency 3 --verbose --timeout 40000", - "test-core": "nyc ava './test' --concurrency 3 --verbose --timeout 40000", + "docs": "jsdoc2md --files src/**/*.js > docs/api.md", + "test-api": "nyc ava ./src/**/*.test.js --concurrency 3 --verbose --timeout 40000", + "test-core": "nyc ava ./test --concurrency 3 --verbose --timeout 40000", "test": "npm run test-core && npm run test-api", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", "preversion": "npm test",