Skip to content

Commit

Permalink
fix(package.json): add missing scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Yberion committed Jan 12, 2023
1 parent 1e65493 commit 0bebd2e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@
"docs:build": "compodoc -p --tsconfig ./tsconfig.json -n ngx-device-detector -d docs --hideGenerator --theme Vagrant",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"format:check": "prettier --config ./.prettierrc --list-different \"{projects,src}/**/*{.ts,.js,.json,.html,.scss}\"",
"format:all": "prettier --config ./.prettierrc --write \"{projects,src}/**/*{.ts,.js,.json,.html,.scss}\"",
"format:check:demo": "prettier --config ./.prettierrc --check \"projects/demo/**/*{.ts,.js,.html,.scss}\"",
"format:check:lib": "prettier --config ./.prettierrc --check \"projects/ngx-device-detector/**/*{.ts,.js,.html,.scss}\"",
"format:fix:demo": "prettier --config ./.prettierrc --write \"projects/demo/**/*{.ts,.js,.html,.scss}\"",
"format:fix:lib": "prettier --config ./.prettierrc --write \"projects/ngx-device-detector/**/*{.ts,.js,.html,.scss}\"",
"format:check:all": "prettier --config ./.prettierrc --check \"projects/**/*{.ts,.js,.html,.scss}\"",
"format:fix:all": "prettier --config ./.prettierrc --write \"projects/**/*{.ts,.js,.html,.scss}\"",
"lint": "npm run format:check:lib",
"test": "jest",
"test:coverage": "jest --coverage",
"e2e": "ng e2e",
Expand Down

0 comments on commit 0bebd2e

Please sign in to comment.