@ahanapediatrics/ahana-fp
Advanced tools
Comparing version 2.2.1 to 2.2.2
@@ -5,2 +5,9 @@ # Changelog | ||
### [2.2.2](https://github.com/ohana-pediatrics/ahana-fp/compare/v2.2.1...v2.2.2) (2020-05-04) | ||
### Bug Fixes | ||
* 🐛 update types for Either ([10b6942](https://github.com/ohana-pediatrics/ahana-fp/commit/10b6942161a5866682b3c1084f9a850d7dc84bdb)) | ||
### [2.2.1](https://github.com/ohana-pediatrics/ahana-fp/compare/v2.2.0...v2.2.1) (2020-04-02) | ||
@@ -7,0 +14,0 @@ |
{ | ||
"name": "@ahanapediatrics/ahana-fp", | ||
"version": "2.2.1", | ||
"version": "2.2.2", | ||
"description": "FP-friendly classes for Typescript", | ||
@@ -14,3 +14,4 @@ "main": "lib/index.js", | ||
"release": "standard-version", | ||
"lint": "tslint -p tsconfig.json", | ||
"prerelease": "npm run prepare", | ||
"lint": "eslint -c .eslintrc.js --ext .ts src", | ||
"postversion": "git push && git push --tags", | ||
@@ -38,8 +39,13 @@ "prettier:cli": "prettier \"src/**/*.ts\" \"src/**/*.tsx\"", | ||
"@types/sinon-chai": "^3.2.3", | ||
"@typescript-eslint/eslint-plugin": "^2.31.0", | ||
"@typescript-eslint/parser": "^2.31.0", | ||
"chai": "^4.2.0", | ||
"chai-as-promised": "^7.1.1", | ||
"cz-conventional-changelog": "^3.1.0", | ||
"eslint": "^6.8.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-prettier": "^3.1.3", | ||
"git-cz": "^4.3.1", | ||
"mocha": "^7.0.1", | ||
"nyc": "^15.0.0", | ||
"prettier": "^1.19.1", | ||
"sinon": "^8.1.1", | ||
@@ -56,7 +62,6 @@ "sinon-chai": "^3.4.0", | ||
"commitizen": { | ||
"path": "./node_modules/cz-conventional-changelog" | ||
"path": "git-cz" | ||
} | ||
}, | ||
"dependencies": { | ||
"prettier": "^1.19.1", | ||
"standard-version": "^7.1.0" | ||
@@ -63,0 +68,0 @@ }, |
@@ -16,1 +16,10 @@ # Ahana FP | ||
Implementing these in a purely FP style would still result in the functions being packaged someway, probably in some kind of namespace. This is just another way to manage this. | ||
## Releasing a new version | ||
If you're able to release new version, you should do: | ||
``` | ||
npm run release | ||
git push && git push --tags | ||
``` |
96670
1
42
2467
25
21
- Removedprettier@^1.19.1
- Removedprettier@1.19.1(transitive)