Changelog
4.1.2 (2023-03-24)
Changelog
4.1.0 (2022-11-07)
Changelog
4.0.2 (2021-09-19)
Changelog
4.0.0 (2020-12-07)
integrify
now returns explicitly typed functions
instead of any
.Other changes:
test(firebase): Use Firebase emulator for testing chore(lint): Move from tslint to eslint chore(ci): Move from TravisCI to Github Actions
chore(coverage): Use Coveralls GH action
test(error): Add tests for error conditions
chore(deps): Remove tslint
test(REPLICATE_ATTRIBUTES): Add test for REPLICATE_ATTRIBUTES
test(DELETE_REFERENCES): Add test
test(MAINTAIN_COUNT): Add test
chore(ci): Rename workflow
docs(README): Update badges
chore(ci): Rename workflow to CI
chore(ci): Revert workflow name
feat(REPLICATE_ATTRIBUTES): Ensure tracked value has changed before updating
Changelog
3.0.0 (2020-02-02)
Before:
[
module.exports.incrementFavoritesCount,
module.exports.decrementFavoritesCount,
] = integrify({
rule: 'MAINTAIN_COUNT',
...
After:
module.exports.maintainFavoritesCount = integrify({
rule: 'MAINTAIN_COUNT',
...