object-delete-key
Advanced tools
Comparing version 1.8.12 to 1.8.13
@@ -5,1 +5,39 @@ # Change Log | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
## 1.8.0 (2019-01-20) | ||
- ✨ Various documentation and setup tweaks after we migrated to monorepo | ||
- ✨ Setup refresh: updated dependencies and all config files using automated tools | ||
## 1.5.0 (2018-10-24) | ||
- ✨ Updated all dependencies | ||
- ✨ Restored coveralls.io reporting | ||
- ✨ Restored unit test linting | ||
## 1.4.0 (2018-06-19) | ||
GitHub sold us out. In the meantime, we: | ||
- ✨ Migrated to Bitbucket (to host repo + perform CI) and Codacy (for code quality audit) | ||
- ✨ Dropped BitHound (RIP) and Travis | ||
## 1.3.0 (2018-05-25) | ||
- ✨ Set up [Prettier](https://prettier.io) on a custom ESLint rule set. | ||
- ✨ Removed `package.lock` and `.editorconfig` | ||
- ✨ Wired Rollup to remove comments from non-dev builds. This means we can now leave the `console.log`s in the source code — there's no need to comment-out `console.log` statements or care about them not spilling into production. Now it's done automatically. | ||
- ✨ Unit tests are pointing at ES modules build, which means that code coverage is correct now, without Babel functions being missed. This is important because now code coverage is real again and now there are no excuses not to perfect it. | ||
## 1.2.0 (2018-03-11) | ||
- ✨ Updated all dependencies | ||
- ✨ Switched from deprecated `posthtml-ast-is-empty` to `ast-is-empty` ([npm](https://www.npmjs.com/package/ast-is-empty), [GitLab](https://gitlab.com/codsen/codsen/tree/master/packages/ast-is-empty)) | ||
## 1.1.0 (2017-10-30) | ||
- ✨ Now accepts globs everywhere, see [matcher](https://github.com/sindresorhus/matcher)'s API which is driving the globbing. This comes from `ast-monkey` ([npm](https://www.npmjs.com/package/ast-monkey), [GitLab](https://gitlab.com/codsen/codsen/tree/master/packages/ast-monkey)) tapping `matcher`. | ||
## 1.0.0 (2017-10-23) | ||
- ✨ First public release |
/** | ||
* object-delete-key | ||
* Delete keys from all arrays or plain objects, nested within anything, by key or by value or by both, and clean up afterwards. Accepts wildcards. | ||
* Version: 1.8.12 | ||
* Version: 1.8.13 | ||
* Author: Roy Revelt, Codsen Ltd | ||
@@ -6,0 +6,0 @@ * License: MIT |
/** | ||
* object-delete-key | ||
* Delete keys from all arrays or plain objects, nested within anything, by key or by value or by both, and clean up afterwards. Accepts wildcards. | ||
* Version: 1.8.12 | ||
* Version: 1.8.13 | ||
* Author: Roy Revelt, Codsen Ltd | ||
@@ -6,0 +6,0 @@ * License: MIT |
/** | ||
* object-delete-key | ||
* Delete keys from all arrays or plain objects, nested within anything, by key or by value or by both, and clean up afterwards. Accepts wildcards. | ||
* Version: 1.8.12 | ||
* Version: 1.8.13 | ||
* Author: Roy Revelt, Codsen Ltd | ||
@@ -6,0 +6,0 @@ * License: MIT |
{ | ||
"name": "object-delete-key", | ||
"version": "1.8.12", | ||
"version": "1.8.13", | ||
"description": "Delete keys from all arrays or plain objects, nested within anything, by key or by value or by both, and clean up afterwards. Accepts wildcards.", | ||
@@ -171,7 +171,7 @@ "license": "MIT", | ||
"dependencies": { | ||
"ast-is-empty": "^1.9.12", | ||
"ast-monkey": "^7.10.12", | ||
"check-types-mini": "^5.7.8", | ||
"ast-is-empty": "^1.9.13", | ||
"ast-monkey": "^7.10.13", | ||
"check-types-mini": "^5.7.9", | ||
"lodash.clonedeep": "^4.5.0", | ||
"util-array-object-or-both": "^2.7.12" | ||
"util-array-object-or-both": "^2.7.13" | ||
}, | ||
@@ -184,3 +184,3 @@ "devDependencies": { | ||
"babel-plugin-istanbul": "^5.1.1", | ||
"eslint": "^5.15.1", | ||
"eslint": "^5.15.2", | ||
"eslint-config-prettier": "^4.1.0", | ||
@@ -187,0 +187,0 @@ "eslint-plugin-ava": "^5.1.1", |
69895
6
Updatedast-is-empty@^1.9.13
Updatedast-monkey@^7.10.13
Updatedcheck-types-mini@^5.7.9