refactor: fix npm command

This commit is contained in:
Damien Arrachequesne
2025-10-17 09:41:39 +02:00
parent 47ff1cd04c
commit 5080c73e1e

View File

@@ -19,7 +19,7 @@
"scripts": {
"compile": "rimraf ./dist && tsc",
"test": "npm run format:check && npm run compile && nyc mocha --import=tsx test/index.ts",
"format:check": "prettier --check \"lib/**/*.ts' \"test/**/*.ts\"",
"format:check": "prettier --check \"lib/**/*.ts\" \"test/**/*.ts\"",
"format:fix": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"",
"prepack": "npm run compile"
},