@patwoz/semantic-release-test
Advanced tools
Comparing version 1.1.1 to 1.2.0
{ | ||
"name": "@patwoz/semantic-release-test", | ||
"version": "1.1.1", | ||
"version": "1.2.0", | ||
"scripts": { | ||
"test": "is-ci test:ci test:watch", | ||
"test:ci": "jest", | ||
"test:watch": "jest --watch", | ||
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .", | ||
@@ -10,6 +13,7 @@ "check-types": "tsc --noEmit", | ||
"check-format": "npm run prettier -- --list-different", | ||
"validate": "npm-run-all --parallel check-types check-format lint", | ||
"validate": "npm-run-all --parallel check-types check-format lint test:ci", | ||
"build": "tsc", | ||
"semantic-release": "semantic-release", | ||
"prepublish": "npm run build" | ||
"prepublish": "npm run build", | ||
"commit": "npx git-cz" | ||
}, | ||
@@ -27,4 +31,12 @@ "author": "Patrick Wozniak <email@patwoz.de> (https://patwoz.de)", | ||
"devDependencies": { | ||
"@babel/core": "7.7.7", | ||
"@babel/preset-env": "7.7.7", | ||
"@babel/preset-typescript": "7.7.7", | ||
"@commitlint/cli": "8.2.0", | ||
"@commitlint/config-conventional": "8.2.0", | ||
"@types/jest": "24.0.24", | ||
"@typescript-eslint/eslint-plugin": "2.12.0", | ||
"@typescript-eslint/parser": "2.12.0", | ||
"babel-jest": "24.9.0", | ||
"cz-conventional-changelog": "3.0.2", | ||
"eslint": "6.7.2", | ||
@@ -34,8 +46,15 @@ "eslint-config-prettier": "6.7.0", | ||
"husky": "3.1.0", | ||
"is-ci-cli": "2.0.0", | ||
"jest": "24.9.0", | ||
"lint-staged": "9.5.0", | ||
"npm-run-all": "4.1.5", | ||
"prettier": "1.19.1", | ||
"typescript": "3.7.3", | ||
"semantic-release": "15.13.31" | ||
"semantic-release": "15.13.31", | ||
"typescript": "3.7.3" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-conventional-changelog" | ||
} | ||
} | ||
} |
@@ -6,6 +6,21 @@ # semantic-release-test | ||
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) | ||
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/) | ||
[![Twitter Follow](https://img.shields.io/twitter/follow/de_patwoz?style=social)](https://twitter.com/de_patwoz) | ||
Just playing with [semantic-release](https://github.com/semantic-release/semantic-release). | ||
Me just playing with [semantic-release](https://github.com/semantic-release/semantic-release). | ||
## 🔁 Flow | ||
### Local (on your computer) | ||
![Flow local](./docs/flow-local.png) | ||
See [`.huskyrc`](./.huskyrc), [`.lintstagedrc`](./.lintstagedrc), [`package.json`](./package.json), [`commitlint.config.js`](./commitlint.config.js) | ||
### Remote (CI) | ||
![Flow remote](./docs/flow-remote.png) | ||
See [`.github/workflows/nodejs.yml`](./.github/workflows/nodejs.yml) | ||
## 🔖 License | ||
@@ -12,0 +27,0 @@ |
@@ -12,1 +12,5 @@ export function test() { | ||
} | ||
export function itWorks() { | ||
return 'It works!'; | ||
} |
@@ -17,3 +17,3 @@ { | ||
}, | ||
"include": ["src/"] | ||
"include": ["src/", "*.js", "test/"] | ||
} |
Sorry, the diff of this file is not supported yet
400339
20
154
30
21