Skip to content

Commit

Permalink
feat(*): add standard-release for cutting releases
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 4, 2019
1 parent 64928b2 commit 00c51a1
Show file tree
Hide file tree
Showing 2 changed files with 501 additions and 20 deletions.
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"rollup-plugin-filesize": "6.0.1",
"rollup-plugin-typescript": "1.0.0",
"sqlite3": "4.0.6",
"standard-version": "4.4.0",
"typescript": "3.3.1"
},
"husky": {
Expand Down Expand Up @@ -65,13 +66,15 @@
"objection": ">=1.4.0"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "yarn lint && yarn clean",
"build": "rollup --config rollup.config.js && yarn typings",
"clean": "rimraf dist",
"lint": "eslint lib --ext ts --fix",
"prebuild": "yarn lint && yarn clean",
"prerelease": "yarn build && yarn typings",
"pretypings": "rimraf typings",
"typings": "tsc --project tsconfig.json --declaration --declarationDir typings --emitDeclarationOnly",
"test": "jest"
"release": "standard-version --sign --message 'chore(release): %s [skip ci]'",
"test": "jest",
"typings": "tsc --project tsconfig.json --declaration --declarationDir typings --emitDeclarationOnly"
},
"typings": "./typings/index.d.ts",
"version": "0.2.1"
Expand Down
Loading

0 comments on commit 00c51a1

Please sign in to comment.