Browse Source

Add `check` script ( `lint && format:check && ts:check` ) (#6599)

Add a single script for checking grapesjs
pull/6604/head
mohamed yahia 4 months ago
committed by GitHub
parent
commit
6089fc756c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      package.json

1
package.json

@ -10,6 +10,7 @@
"docs:api": "pnpm --filter @grapesjs/docs docs:api",
"lint": "eslint .",
"build": "pnpm -r run build",
"check": "pnpm run lint && pnpm run format:check && pnpm run ts:check",
"ts:check": "pnpm --filter grapesjs ts:check",
"clean": "find . -type d \\( -name \"node_modules\" -o -name \"build\" -o -name \"dist\" \\) -exec rm -rf {} + && rm ./pnpm-lock.yaml",
"format": "prettier . --write --ignore-path .prettierignore",

Loading…
Cancel
Save