Explorar el Código

fix prettier glob pattern (#247)

Peter Evans hace 5 años
padre
commit
97b30c411c
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      package.json

+ 2 - 2
package.json

@@ -5,8 +5,8 @@
   "main": "lib/main.js",
   "scripts": {
     "build": "tsc && ncc build && node lib/misc/generate-docs.js",
-    "format": "prettier --write **/*.ts",
-    "format-check": "prettier --check **/*.ts",
+    "format": "prettier --write '**/*.ts'",
+    "format-check": "prettier --check '**/*.ts'",
     "lint": "eslint src/**/*.ts",
     "test": "jest"
   },