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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
0 deletions
-
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", |
|
|
|
|