tslint-immutable
Advanced tools
Comparing version 5.1.1 to 5.1.2
@@ -10,2 +10,10 @@ # Change Log | ||
## [v5.1.1] - 2019-01-25 | ||
### Fixed | ||
* Fixes readonly-keyword fixer adds the `readonly` modifier in the wrong place for decorated class properties. See [#81](https://github.com/jonaskello/tslint-immutable/issues/81). Thanks to [@tkryskiewicz](https://github.com/tkryskiewicz) for this fix! (See PR [#113](https://github.com/jonaskello/tslint-immutable/pull/113)). | ||
### Added | ||
## [v5.1.0] - 2019-01-15 | ||
@@ -310,3 +318,4 @@ | ||
[unreleased]: https://github.com/jonaskello/tslint-immutable/compare/v5.1.0...master | ||
[unreleased]: https://github.com/jonaskello/tslint-immutable/compare/v5.1.1...master | ||
[v5.1.1]: https://github.com/jonaskello/tslint-immutable/compare/v5.0.1...v5.1.1 | ||
[v5.1.0]: https://github.com/jonaskello/tslint-immutable/compare/v5.0.1...v5.1.0 | ||
@@ -313,0 +322,0 @@ [v5.0.1]: https://github.com/jonaskello/tslint-immutable/compare/v5.0.0...v5.0.1 |
{ | ||
"name": "tslint-immutable", | ||
"version": "5.1.1", | ||
"version": "5.1.2", | ||
"description": "TSLint rules to disable mutation in TypeScript.", | ||
@@ -53,3 +53,3 @@ "main": "tslint-immutable.json", | ||
"preversion": "yarn verify", | ||
"postversion": "git push --tags && yarn publish . --tag $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"" | ||
"postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"" | ||
}, | ||
@@ -56,0 +56,0 @@ "lint-staged": { |
@@ -255,3 +255,3 @@ # tslint-immutable | ||
* [ignore-new-array](#using-the-ignore-new-array-option-with-no-array-mutation) | ||
* ~~ignore-mutation-following-accessor~~ - *deprecated in favor of [ignore-new-array](#using-the-ignore-new-array-option-with-no-array-mutation)* | ||
* ~~ignore-mutation-following-accessor~~ - _deprecated in favor of [ignore-new-array](#using-the-ignore-new-array-option-with-no-array-mutation)_ | ||
@@ -631,2 +631,10 @@ #### Example config | ||
## How to publish | ||
``` | ||
yarn version --patch | ||
yarn version --minor | ||
yarn version --major | ||
``` | ||
## Prior work | ||
@@ -633,0 +641,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
215083
654