Skip to content

Commit

Permalink
feat: update package.json scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mediremi committed Feb 15, 2021
1 parent 650289c commit 3a0cac1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@
"start": "d2-app-scripts start",
"build": "d2-app-scripts build",
"test": "d2-app-scripts test",
"lint": "d2-style js check && d2-style text check",
"format": "d2-style js apply && d2-style text apply"
"lint:js": "d2-style js check",
"lint:text": "d2-style text check",
"lint:staged": "yarn lint:js --staged && yarn lint:text --staged",
"lint": "yarn lint:js && yarn lint:text",
"format:js": "d2-style js apply",
"format:text": "d2-style text apply",
"format:staged": "yarn format:js --staged && yarn format:text --staged",
"format": "yarn format:js && yarn format:text"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 3a0cac1

Please sign in to comment.