rename file

This commit is contained in:
Sidharth Vinod 2022-11-04 02:09:14 +05:30
parent e7369acaea
commit daa85b4279
No known key found for this signature in database
GPG Key ID: FB5CCD378D3907CD
3 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{
"!(docs/**/*)*.{ts,js,json,html,md,mts}": ["eslint --fix", "prettier --write"],
"cSpell.json": ["ts-node-esm bin/checkCSpell.ts"]
"cSpell.json": ["ts-node-esm bin/fixCSpell.ts"]
}

View File

@ -33,7 +33,7 @@
"dev": "concurrently \"pnpm build:vite --watch\" \"ts-node-esm .vite/server.ts\"",
"release": "pnpm build",
"lint": "eslint --cache --ignore-path .gitignore . && pnpm --filter mermaid run lint:jison && prettier --check .",
"lint:fix": "eslint --fix --ignore-path .gitignore . && prettier --write .",
"lint:fix": "eslint --fix --ignore-path .gitignore . && prettier --write . && ts-node-esm bin/fixCSpell.ts",
"cypress": "cypress run",
"cypress:open": "cypress open",
"e2e": "start-server-and-test dev http://localhost:9000/ cypress",