mixin-deep 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mixin-deep might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +28 -15
  3. package/package.json +5 -5
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2014-2015, 2017, Jon Schlinkert
3
+ Copyright (c) 2014-2015, 2017, Jon Schlinkert.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,7 +1,9 @@
1
- # mixin-deep [![NPM version](https://img.shields.io/npm/v/mixin-deep.svg?style=flat)](https://www.npmjs.com/package/mixin-deep) [![NPM monthly downloads](https://img.shields.io/npm/dm/mixin-deep.svg?style=flat)](https://npmjs.org/package/mixin-deep) [![NPM total downloads](https://img.shields.io/npm/dt/mixin-deep.svg?style=flat)](https://npmjs.org/package/mixin-deep) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/mixin-deep.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/mixin-deep)
1
+ # mixin-deep [![NPM version](https://img.shields.io/npm/v/mixin-deep.svg?style=flat)](https://www.npmjs.com/package/mixin-deep) [![NPM monthly downloads](https://img.shields.io/npm/dm/mixin-deep.svg?style=flat)](https://npmjs.org/package/mixin-deep) [![NPM total downloads](https://img.shields.io/npm/dt/mixin-deep.svg?style=flat)](https://npmjs.org/package/mixin-deep) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/mixin-deep.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/mixin-deep)
2
2
 
3
3
  > Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.
4
4
 
5
+ Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.
6
+
5
7
  ## Install
6
8
 
7
9
  Install with [npm](https://www.npmjs.com/):
@@ -21,18 +23,25 @@ mixinDeep({a: {aa: 'aa'}}, {a: {bb: 'bb'}}, {a: {cc: 'cc'}});
21
23
 
22
24
  ## About
23
25
 
24
- ### Related projects
26
+ <details>
27
+ <summary><strong>Contributing</strong></summary>
25
28
 
26
- * [defaults-deep](https://www.npmjs.com/package/defaults-deep): Like `extend` but recursively copies only the missing properties/values to the target object. | [homepage](https://github.com/jonschlinkert/defaults-deep "Like `extend` but recursively copies only the missing properties/values to the target object.")
27
- * [extend-shallow](https://www.npmjs.com/package/extend-shallow): Extend an object with the properties of additional objects. node.js/javascript util. | [homepage](https://github.com/jonschlinkert/extend-shallow "Extend an object with the properties of additional objects. node.js/javascript util.")
28
- * [merge-deep](https://www.npmjs.com/package/merge-deep): Recursively merge values in a javascript object. | [homepage](https://github.com/jonschlinkert/merge-deep "Recursively merge values in a javascript object.")
29
- * [mixin-object](https://www.npmjs.com/package/mixin-object): Mixin the own and inherited properties of other objects onto the first object. Pass an… [more](https://github.com/jonschlinkert/mixin-object) | [homepage](https://github.com/jonschlinkert/mixin-object "Mixin the own and inherited properties of other objects onto the first object. Pass an empty object as the first arg to shallow clone.")
29
+ Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
30
30
 
31
- ### Contributing
31
+ </details>
32
32
 
33
- Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
33
+ <details>
34
+ <summary><strong>Running Tests</strong></summary>
35
+
36
+ Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
37
+
38
+ ```sh
39
+ $ npm install && npm test
40
+ ```
34
41
 
35
- ### Building docs
42
+ </details>
43
+ <details>
44
+ <summary><strong>Building docs</strong></summary>
36
45
 
37
46
  _(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
38
47
 
@@ -42,18 +51,22 @@ To generate the readme, run the following command:
42
51
  $ npm install -g verbose/verb#dev verb-generate-readme && verb
43
52
  ```
44
53
 
45
- ### Running tests
54
+ </details>
46
55
 
47
- Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
56
+ ### Related projects
48
57
 
49
- ```sh
50
- $ npm install && npm test
51
- ```
58
+ You might also be interested in these projects:
59
+
60
+ * [defaults-deep](https://www.npmjs.com/package/defaults-deep): Like `extend` but recursively copies only the missing properties/values to the target object. | [homepage](https://github.com/jonschlinkert/defaults-deep "Like `extend` but recursively copies only the missing properties/values to the target object.")
61
+ * [extend-shallow](https://www.npmjs.com/package/extend-shallow): Extend an object with the properties of additional objects. node.js/javascript util. | [homepage](https://github.com/jonschlinkert/extend-shallow "Extend an object with the properties of additional objects. node.js/javascript util.")
62
+ * [merge-deep](https://www.npmjs.com/package/merge-deep): Recursively merge values in a javascript object. | [homepage](https://github.com/jonschlinkert/merge-deep "Recursively merge values in a javascript object.")
63
+ * [mixin-object](https://www.npmjs.com/package/mixin-object): Mixin the own and inherited properties of other objects onto the first object. Pass an… [more](https://github.com/jonschlinkert/mixin-object) | [homepage](https://github.com/jonschlinkert/mixin-object "Mixin the own and inherited properties of other objects onto the first object. Pass an empty object as the first arg to shallow clone.")
52
64
 
53
65
  ### Author
54
66
 
55
67
  **Jon Schlinkert**
56
68
 
69
+ * [linkedin/in/jonschlinkert](https://linkedin.com/in/jonschlinkert)
57
70
  * [github/jonschlinkert](https://github.com/jonschlinkert)
58
71
  * [twitter/jonschlinkert](https://twitter.com/jonschlinkert)
59
72
 
@@ -64,4 +77,4 @@ Released under the [MIT License](LICENSE).
64
77
 
65
78
  ***
66
79
 
67
- _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.4.2, on March 02, 2017._
80
+ _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on December 09, 2017._
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mixin-deep",
3
3
  "description": "Deeply mix the properties of objects into the first object. Like merge-deep, but doesn't clone.",
4
- "version": "1.2.0",
4
+ "version": "1.3.0",
5
5
  "homepage": "https://github.com/jonschlinkert/mixin-deep",
6
6
  "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7
7
  "repository": "jonschlinkert/mixin-deep",
@@ -21,12 +21,12 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "for-in": "^1.0.2",
24
- "is-extendable": "^0.1.1"
24
+ "is-extendable": "^1.0.1"
25
25
  },
26
26
  "devDependencies": {
27
- "gulp-format-md": "^0.1.11",
28
- "mocha": "^3.2.0",
29
- "should": "^11.2.0"
27
+ "gulp-format-md": "^1.0.0",
28
+ "mocha": "^3.5.3",
29
+ "should": "^13.1.3"
30
30
  },
31
31
  "keywords": [
32
32
  "deep",