Skip to content

Commit e3d76b8

Browse files
author
Hyunje Jun
authored
Merge pull request #38 from micksatana/fix-prebuild-prettier-problem-on-windows
Fix quote cause prettier error on Windows
2 parents fc86d66 + ccb2f0e commit e3d76b8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,6 @@ _book
6565

6666
# Test recent request
6767
test/helpers/request.json
68+
69+
# IDE
70+
.idea/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"scripts": {
1616
"pretest": "npm run build",
1717
"test": "API_BASE_URL=http://localhost:1234/ TEST_PORT=1234 TS_NODE_CACHE=0 mocha -r ts-node/register test/*.spec.ts",
18-
"prettier": "prettier --parser typescript --trailing-comma all '{lib,test}/**/*.ts'",
18+
"prettier": "prettier --parser typescript --trailing-comma all \"{lib,test}/**/*.ts\"",
1919
"format": "npm run prettier -- --write",
2020
"format:check": "npm run prettier -- -l",
2121
"clean": "del-cli dist",

0 commit comments

Comments
 (0)