Skip to content

Commit dfdf123

Browse files
authored
chore: add new development scripts to package.json
Add new development scripts to enhance the development workflow. New scripts: - format: runs Prettier to automatically format files - typecheck: runs TypeScript compiler in type checking mode These scripts support the CI workflows and make development more efficient.
1 parent 8befafe commit dfdf123

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"dev": "next dev",
7-
"build": "next build",
8-
"start": "next start",
9-
"lint": "next lint"
10-
},
6+
"dev": "next dev",
7+
"build": "next build",
8+
"start": "next start",
9+
"lint": "next lint",
10+
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
11+
"typecheck": "tsc --noEmit"
12+
},
1113
"dependencies": {
1214
"@copilotkit/backend": "^0.5.0",
1315
"@copilotkit/react-core": "^0.21.0",

0 commit comments

Comments
 (0)