redux-form-input-masks
Advanced tools
Comparing version 0.3.1 to 0.3.2
// eslint-disable-next-line | ||
import { danger, markdown, message, schedule, warn } from 'danger'; | ||
import { danger, fail, markdown, message, schedule, warn } from 'danger'; | ||
@@ -43,3 +43,3 @@ const removeAtSymbols = string => string.replace(/@/g, ''); | ||
if (error !== undefined) { | ||
warn(error); | ||
fail(error); | ||
} | ||
@@ -46,0 +46,0 @@ }); |
{ | ||
"name": "redux-form-input-masks", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"description": "Input masking with redux-form made easy", | ||
@@ -38,2 +38,4 @@ "main": "./src/index.js", | ||
"devDependencies": { | ||
"@semantic-release/changelog": "^1.0.1", | ||
"@semantic-release/git": "^3.0.1", | ||
"babel-core": "^6.26.0", | ||
@@ -90,3 +92,23 @@ "babel-eslint": "^8.2.1", | ||
} | ||
}, | ||
"release": { | ||
"verifyConditions": [ | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
"@semantic-release/git", | ||
"@semantic-release/github" | ||
], | ||
"prepare": [ | ||
"@semantic-release/changelog", | ||
"@semantic-release/npm", | ||
{ | ||
"path": "@semantic-release/git", | ||
"assets": [ | ||
"package.json" | ||
], | ||
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" | ||
}, | ||
"@semantic-release/github" | ||
] | ||
} | ||
} |
@@ -56,3 +56,3 @@ # redux-form-input-masks | ||
* **simple to setup:** works with `redux-form` out of the box, you just need to install `redux-form-input-masks` and you're good to go; | ||
* **simple to use:** import a mask creator and apply it... and that's it; | ||
* **simple to use:** import a mask creator and apply it... and that's it. There's no need to change the component you're already using; | ||
* **flexible:** it lets you choose how you want the input mask to behave; | ||
@@ -144,6 +144,6 @@ * **lightweight:** not a single dependency is added to `redux-form-input-masks`; | ||
* [x] add fancy badges ([#4](https://github.com/renato-bohler/redux-form-input-masks/issues/4)); | ||
* [ ] add issue template ([#2](https://github.com/renato-bohler/redux-form-input-masks/issues/2)); | ||
* [ ] add code of conduct ([#3](https://github.com/renato-bohler/redux-form-input-masks/issues/3)); | ||
* [x] add issue template ([#2](https://github.com/renato-bohler/redux-form-input-masks/issues/2)); | ||
* [x] add code of conduct ([#3](https://github.com/renato-bohler/redux-form-input-masks/issues/3)); | ||
* [ ] add contributing ([#5](https://github.com/renato-bohler/redux-form-input-masks/issues/5)); | ||
* [ ] specify an API for `createStringMask`, an easy and flexible string mask creator; | ||
* [ ] implement `createStringMask` and its tests. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
112526
28
26