Skip to content

Commit

Permalink
chore: Move lint and format scripts to web package
Browse files Browse the repository at this point in the history
  • Loading branch information
munshkr committed Jan 5, 2025
1 parent 755b76e commit 0425532
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"scripts": {
"build": "lerna run build",
"check": "lerna run check",
"lint": "prettier -c .",
"format": "prettier -w ."
"lint": "lerna run lint",
"format": "lerna run format"
},
"keywords": [
"codemirror",
Expand Down
4 changes: 3 additions & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
"prebuild": "node script/prebuild.js",
"build": "npm run prebuild && tsc && vite build",
"start": "node ./bin/flok-web.js",
"check": "tsc --noEmit"
"check": "tsc --noEmit",
"lint": "prettier -c .",
"format": "prettier -w ."
},
"dependencies": {
"@flok-editor/server-middleware": "^1.3.0",
Expand Down

0 comments on commit 0425532

Please sign in to comment.