Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@untool/core

Package Overview
Dependencies
Maintainers
4
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@untool/core - npm Package Compare versions

Comparing version 1.6.2 to 1.7.0

13

CHANGELOG.md

@@ -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 @@

4

index.js
'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"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc