Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
Merge pull request #392 from mlewand/npmScriptsWindowsFix
Browse files Browse the repository at this point in the history
Use double quotes consistently in npm scripts.
  • Loading branch information
roblourens authored Apr 1, 2017
2 parents 2fc6454 + 99c381c commit 6468c4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
"watch": "concurrently \"npm run watch:debugadapter\" \"npm run watch:test\"",
"watch:debugadapter": "webpack -w",
"watch:test": "tsc -p test/tsconfig.json -w",
"test": "mocha --timeout 20000 -s 2000 -u tdd --colors './out/test/*.test.js'",
"test": "mocha --timeout 20000 -s 2000 -u tdd --colors \"./out/test/*.test.js\"",
"intTest": "mocha --timeout 20000 -s 3500 -u tdd --colors --reporter out/test/int/loggingReporter.js ./out/test/int/*.test.js",
"lint": "tslint -t verbose 'src/**/*.ts'",
"lint": "tslint -t verbose \"src/**/*.ts\"",
"vscode:prepublish": "gulp verify-no-linked-modules",
"postinstall": "node ./node_modules/vscode/bin/install"
},
Expand Down

0 comments on commit 6468c4d

Please sign in to comment.