mirror of https://github.com/Seich/Beau.git
Updated is-plain-object.
This commit is contained in:
parent
1e4e0ba885
commit
b0466c0333
|
|
@ -4577,9 +4577,9 @@
|
|||
"dev": true
|
||||
},
|
||||
"is-plain-object": {
|
||||
"version": "4.1.0",
|
||||
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-4.1.0.tgz",
|
||||
"integrity": "sha512-1N1OpoS8S4Ua+FsH6Mhvgaj0di3uRXgulcv2dnFu2J/WcEsDNbBoiUX6mYmhQ2cAzZ+B/lTJtX1qUSL5RwsGug=="
|
||||
"version": "5.0.0",
|
||||
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
|
||||
"integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q=="
|
||||
},
|
||||
"is-promise": {
|
||||
"version": "2.1.0",
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
"deepmerge": "4.2.2",
|
||||
"dotenv": "8.2.0",
|
||||
"globby": "11.0.1",
|
||||
"is-plain-object": "4.1.0",
|
||||
"is-plain-object": "5.0.0",
|
||||
"js-yaml": "3.14.0",
|
||||
"jsome": "2.5.0",
|
||||
"request": "2.88.2",
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ const vm = require('vm');
|
|||
const requireg = require('requireg');
|
||||
const deepmerge = require('deepmerge');
|
||||
const { toKebabCase, dynamicValueRegex, replaceInObject } = require('./shared');
|
||||
const isPlainObject = require('is-plain-object');
|
||||
const { isPlainObject } = require('is-plain-object');
|
||||
|
||||
class Plugins {
|
||||
constructor(plugins = [], autoload = ['std']) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue