Skip to content

Commit

Permalink
fix(package): remove duplicate typings script
Browse files Browse the repository at this point in the history
Signed-off-by: Will Soto <willsoto@users.noreply.github.com>
  • Loading branch information
willsoto committed Feb 6, 2019
1 parent da54c74 commit 2388553
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@
],
"license": "Apache-2.0",
"lint-staged": {
"*.ts": [
"yarn lint",
"*.md": [
"prettier --write",
"git add"
],
"*.md": [
"*.ts": [
"yarn lint",
"prettier --write",
"git add"
]
Expand All @@ -76,14 +76,15 @@
"objection": ">=1.4.0"
},
"scripts": {
"build": "rollup --config rollup.config.js && yarn typings",
"build": "rollup --config rollup.config.js",
"clean": "rimraf dist",
"lint": "eslint lib --ext ts --fix",
"postbuild": "yarn typings",
"postrelease": "conventional-github-releaser -p angular",
"prebuild": "yarn lint && yarn clean",
"prerelease": "yarn build && yarn typings",
"prerelease": "yarn build",
"pretypings": "rimraf typings",
"release": "standard-version --sign --message 'chore(release): %s [skip ci]'",
"postrelease": "conventional-github-releaser -p angular",
"test": "jest",
"typings": "tsc --project tsconfig.json --declaration --declarationDir typings --emitDeclarationOnly"
},
Expand Down

0 comments on commit 2388553

Please sign in to comment.