Skip to content

Commit

Permalink
build(Semantic Release): resetup for semantic release
Browse files Browse the repository at this point in the history
BREAKING CHANGE: New package name, new semantic release
  • Loading branch information
hannahhoward committed Mar 2, 2018
1 parent 31969f2 commit f419b26
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"name": "@rxreact/core",
"version": "0.0.1-development",
"version": "0.0.0-development",
"description": "",
"keywords": [],
"main": "dist/rxreact.umd.js",
"module": "dist/rxreact.es5.js",
"typings": "dist/types/rxreact.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"author": "hannahhoward <hannah@hannahhoward.net>",
"repository": {
"type": "git",
Expand All @@ -19,8 +21,7 @@
"scripts": {
"lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build":
"tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
"build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
"start": "rollup -c rollup.config.ts -w",
"test": "jest",
"test:watch": "jest --watch",
Expand All @@ -34,25 +35,34 @@
"travis-deploy-once": "travis-deploy-once"
},
"lint-staged": {
"{src,test}/**/*.ts": ["prettier --write --no-semi --single-quote", "git add"]
"{src,test}/**/*.ts": [
"prettier --write --no-semi --single-quote",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage":
"Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": ["ts", "tsx", "js"],
"coveragePathIgnorePatterns": ["/node_modules/", "/test/"],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
Expand Down

0 comments on commit f419b26

Please sign in to comment.