@untool/core
Advanced tools
Comparing version 1.6.2 to 1.7.0
@@ -6,2 +6,15 @@ # Change Log | ||
# [1.7.0](https://github.com/untool/untool/compare/v1.6.2...v1.7.0) (2019-05-03) | ||
### Bug Fixes | ||
* update dependency dotenv to v8 ([c6d8ae7](https://github.com/untool/untool/commit/c6d8ae7)) | ||
* **core:** take last Mixin constructor arg as options object ([2837734](https://github.com/untool/untool/commit/2837734)) | ||
* update dependency escape-string-regexp to v2 ([a4aac60](https://github.com/untool/untool/commit/a4aac60)) | ||
## [1.6.2](https://github.com/untool/untool/compare/v1.6.1...v1.6.2) (2019-04-15) | ||
@@ -8,0 +21,0 @@ |
'use strict'; | ||
const debug = require('debug')('untool:core'); | ||
const isPlainObject = require('is-plain-object'); | ||
const isPlainObject = require('is-plain-obj'); | ||
const define = require('mixinable'); | ||
@@ -11,3 +11,3 @@ | ||
constructor(config, ...args) { | ||
const options = args.slice(-1); | ||
const options = args[args.length - 1]; | ||
this.config = config; | ||
@@ -14,0 +14,0 @@ this.options = isPlainObject(options) ? options : {}; |
@@ -5,3 +5,3 @@ 'use strict'; | ||
const flatten = require('flat'); | ||
const isPlainObject = require('is-plain-object'); | ||
const isPlainObject = require('is-plain-obj'); | ||
const escapeRegExp = require('escape-string-regexp'); | ||
@@ -8,0 +8,0 @@ |
{ | ||
"name": "@untool/core", | ||
"version": "1.6.2", | ||
"version": "1.7.0", | ||
"description": "untool core", | ||
@@ -23,8 +23,8 @@ "repository": { | ||
"debug": "^4.0.0", | ||
"dotenv": "^7.0.0", | ||
"dotenv": "^8.0.0", | ||
"enhanced-resolve": "^4.0.0", | ||
"escape-string-regexp": "^1.0.5", | ||
"escape-string-regexp": "^2.0.0", | ||
"find-up": "^3.0.0", | ||
"flat": "^4.0.0", | ||
"is-plain-object": "^2.0.4", | ||
"is-plain-obj": "^2.0.0", | ||
"lodash.mergewith": "^4.6.1", | ||
@@ -37,3 +37,3 @@ "mixinable": "^4.0.0", | ||
}, | ||
"gitHead": "2a5f05dd9f8d5569d7579d6d2a4bd7c56a66dbda" | ||
"gitHead": "093c30b0eba5ffa7b60966ce094c28950bb54407" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33032
+ Addedis-plain-obj@^2.0.0
+ Addeddotenv@8.6.0(transitive)
+ Addedescape-string-regexp@2.0.0(transitive)
+ Addedis-plain-obj@2.1.0(transitive)
- Removedis-plain-object@^2.0.4
- Removeddotenv@7.0.0(transitive)
- Removedescape-string-regexp@1.0.5(transitive)
- Removedis-plain-object@2.0.4(transitive)
- Removedisobject@3.0.1(transitive)
Updateddotenv@^8.0.0
Updatedescape-string-regexp@^2.0.0