archiver-utils
Advanced tools
| ## Changelog | ||
| **2.0.0-wip** — <small> August 22, 2018 </small> — [Diff](https://github.com/archiverjs/archiver-utils/compare/1.3.0...master) | ||
| - breaking: follow node LTS, remove support for versions under 6. | ||
| - other: remove unused lodash dependence (#13) | ||
| - test: now targeting node v10 | ||
| [Release Archive](https://github.com/archiverjs/archiver-utils/releases) |
+9
-2
@@ -11,3 +11,10 @@ /** | ||
| var _ = require('lodash'); | ||
| var _ = { flatten: require('lodash.flatten'), | ||
| difference: require('lodash.difference'), | ||
| union: require('lodash.union'), | ||
| toArray: require('lodash.toarray'), | ||
| isPlainObject: require('lodash.isplainobject'), | ||
| defaults: require('lodash.defaults'), | ||
| extend: require('lodash.assign') | ||
| } | ||
| var glob = require('glob'); | ||
@@ -207,2 +214,2 @@ | ||
| return files; | ||
| }; | ||
| }; |
+1
-1
@@ -13,3 +13,3 @@ /** | ||
| var normalizePath = require('normalize-path'); | ||
| var _ = require('lodash'); | ||
| var _ = { defaults: require('lodash.defaults') }; | ||
@@ -16,0 +16,0 @@ var Stream = require('stream').Stream; |
+15
-10
| { | ||
| "name": "archiver-utils", | ||
| "version": "1.3.0", | ||
| "version": "2.0.0", | ||
| "license": "MIT", | ||
| "description": "utility functions for archiver", | ||
| "homepage": "https://github.com/archiverjs/archiver-utils", | ||
| "homepage": "https://github.com/archiverjs/archiver-utils#readme", | ||
| "author": { | ||
@@ -18,3 +18,2 @@ "name": "Chris Talkington", | ||
| }, | ||
| "homepage": "https://github.com/archiverjs/archiver-utils#readme", | ||
| "keywords": [ | ||
@@ -30,3 +29,3 @@ "archiver", | ||
| "engines": { | ||
| "node": ">= 0.10.0" | ||
| "node": ">= 6" | ||
| }, | ||
@@ -40,10 +39,16 @@ "scripts": { | ||
| "lazystream": "^1.0.0", | ||
| "lodash": "^4.8.0", | ||
| "normalize-path": "^2.0.0", | ||
| "lodash.assign": "^4.2.0", | ||
| "lodash.defaults": "^4.2.0", | ||
| "lodash.difference": "^4.5.0", | ||
| "lodash.flatten": "^4.4.0", | ||
| "lodash.isplainobject": "^4.0.6", | ||
| "lodash.toarray": "^4.4.0", | ||
| "lodash.union": "^4.6.0", | ||
| "normalize-path": "^3.0.0", | ||
| "readable-stream": "^2.0.0" | ||
| }, | ||
| "devDependencies": { | ||
| "chai": "^3.4.0", | ||
| "mocha": "^2.3.3", | ||
| "rimraf": "^2.4.2", | ||
| "chai": "^4.0.0", | ||
| "mocha": "^5.0.0", | ||
| "rimraf": "^2.6.0", | ||
| "mkdirp": "^0.5.0" | ||
@@ -54,2 +59,2 @@ }, | ||
| } | ||
| } | ||
| } |
+2
-2
@@ -1,2 +0,2 @@ | ||
| # archiver-utils v1.2.0 [](https://travis-ci.org/archiverjs/archiver-utils) [](https://ci.appveyor.com/project/ctalkington/archiver-utils/branch/master) | ||
| # Archiver Utils [](https://travis-ci.org/archiverjs/archiver-utils) [](https://ci.appveyor.com/project/ctalkington/archiver-utils/branch/master) | ||
@@ -7,2 +7,2 @@ | ||
| - [Contributing](https://github.com/archiverjs/archiver-utils/blob/master/CONTRIBUTING.md) | ||
| - [MIT License](https://github.com/archiverjs/archiver-utils/blob/master/LICENSE) | ||
| - [MIT License](https://github.com/archiverjs/archiver-utils/blob/master/LICENSE) |
14001
6.12%6
20%321
2.56%8
14.29%12
100%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
Updated