From f315fa4d5d9fc487e310d2468486327d07834c2b Mon Sep 17 00:00:00 2001 From: Jason Dreyzehner Date: Thu, 15 Mar 2018 21:41:53 -0400 Subject: [PATCH] fix(package): switch to double quotes because single quotes break on Windows --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index d972c36..fd6c5bc 100644 --- a/package.json +++ b/package.json @@ -37,13 +37,13 @@ "build:main": "tsc -p tsconfig.json", "build:module": "tsc -p tsconfig.module.json", "fix": "run-s fix:*", - "fix:prettier": "prettier 'src/**/*.ts' --write", + "fix:prettier": "prettier \"src/**/*.ts\" --write", "fix:tslint": "tslint --fix --project .", "test": "run-s build test:*", - "test:lint": "tslint --project . && prettier 'src/**/*.ts' --list-different", + "test:lint": "tslint --project . && prettier \"src/**/*.ts\" --list-different", "test:unit": "nyc --silent ava", "test:nsp": "nsp check", - "watch": "run-s clean build:main && run-p 'build:main -- -w' 'test:unit -- --watch'", + "watch": "run-s clean build:main && run-p \"build:main -- -w\" \"test:unit -- --watch\"", "cov": "run-s build test:unit cov:html && opn coverage/index.html", "cov:html": "nyc report --reporter=html", "cov:send": "nyc report --reporter=lcov > coverage.lcov && codecov", @@ -51,7 +51,7 @@ "doc": "run-s doc:html && opn build/docs/index.html", "doc:html": "typedoc src/ --target ES6 --mode file --out build/docs", "doc:json": "typedoc src/ --target ES6 --mode file --json build/docs/typedoc.json", - "doc:publish": "gh-pages -m '[ci skip] Updates' -d build/docs", + "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs", "version": "standard-version", "reset": "git clean -dfx && git reset --hard && npm i", "clean": "trash build test",