Skip to content

Commit ff54dc3

Browse files
committed
v1.1.0 defaults-deep
1 parent 3834f01 commit ff54dc3

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"use strict";
22
module.exports = {
3-
reqhere: require("@nodeutils/reqhere")
3+
reqhere: require("@nodeutils/reqhere"),
4+
defaultsDeep: require("@nodeutils/defaults-deep")
45
};

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nodeutils",
3-
"version": "1.0.2",
3+
"version": "1.1.0",
44
"description": "A collection of node utilities",
55
"main": "index.js",
66
"scripts": {
@@ -13,7 +13,10 @@
1313
"keywords": [
1414
"nodeutils",
1515
"node",
16-
"utilities"
16+
"utilities",
17+
"reqhere",
18+
"defaultsDeep",
19+
"defaults-deep"
1720
],
1821
"author": "Drew Llewellyn <drew@drew.pro> (http://drew.pro)",
1922
"license": "ISC",
@@ -22,6 +25,7 @@
2225
},
2326
"homepage": "https://github.com/nodeutils/nodeutils#readme",
2427
"dependencies": {
25-
"@nodeutils/reqhere": "^1.0.1"
28+
"@nodeutils/reqhere": "^1.0.1",
29+
"@nodeutils/defaults-deep": "^1.0.0"
2630
}
2731
}

readme.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ Simple straightforward tool to allow you to require locally. [Read More](https:/
66
```
77
const reqhere = require("nodeutils").reqhere;
88
```
9+
10+
## defaultsDeep
11+
Like lodash's defaultsDeep, but with preservation of arrays. [Read More](https://www.npmjs.com/package/@nodeutils/defaults-deep)
12+
```
13+
const reqhere = require("nodeutils").defaultsDeep;
14+
```

0 commit comments

Comments
 (0)