refactor: fixes prettier script syntax

This commit makes sure that the right syntax is used in the Prettier
scripts.
This commit is contained in:
Rick Staa
2022-07-15 12:17:07 +02:00
parent 569d785639
commit 7163eb1eb6

View File

@ -6,8 +6,8 @@
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --check \"**/*.ts\"",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",