Skip to content

Commit

Permalink
chore: update npm scripts (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
RyuNen344 authored Jan 8, 2023
1 parent d5d5eff commit 57708ec
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 @@ -7,6 +7,9 @@
"engines": {
"npm": "⚠️ plz use yarn instead ⚠️"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
Expand All @@ -16,12 +19,14 @@
"test:ci": "jest --json --coverage > test-results.json",
"coverage": "jest --coverage",
"docs": "typedoc",
"package": "run-s clean build",
"package:pre": "run-s clean build",
"package:exec": "npm publish",
"clean": "rimraf dist coverage docs",
"lint": "eslint {src,test}/**/*.{ts,tsx}",
"lint:ci": "eslint {src,test}/**/*.{ts,tsx} -f checkstyle > lint-results.xml",
"format": "prettier --write {src,test}/**/*.{ts,tsx}",
"upgrade": "yarn upgrade --latest"
"upgrade": "yarn upgrade --latest",
"publish": "run-s package:*"
},
"jest": {
"verbose": true,
Expand Down

0 comments on commit 57708ec

Please sign in to comment.