@nlpjs/core-loader
Advanced tools
Comparing version 4.10.1 to 4.11.0
{ | ||
"name": "@nlpjs/core-loader", | ||
"version": "4.10.1", | ||
"version": "4.11.0", | ||
"description": "Core", | ||
@@ -28,6 +28,6 @@ "author": { | ||
"dependencies": { | ||
"@nlpjs/core": "^4.10.1", | ||
"@nlpjs/core": "^4.11.0", | ||
"@nlpjs/request": "^4.6.0" | ||
}, | ||
"gitHead": "1eae0c913e03211f550c2b610fc2bf620b1b0939" | ||
"gitHead": "9b24db3f2a381399cad134bdab734e36744fcde1" | ||
} |
@@ -124,4 +124,4 @@ /* | ||
function containerBootstrap( | ||
srcSettings = {}, | ||
mustLoadEnv = true, | ||
inputSettings, | ||
srcMustLoadEnv, | ||
container, | ||
@@ -132,2 +132,3 @@ preffix, | ||
) { | ||
const mustLoadEnv = srcMustLoadEnv === undefined ? true : srcMustLoadEnv; | ||
const instance = container || new Container(preffix); | ||
@@ -148,2 +149,3 @@ instance.parent = parent; | ||
} | ||
const srcSettings = inputSettings || {}; | ||
let settings = srcSettings; | ||
@@ -150,0 +152,0 @@ if (typeof settings === 'string') { |
@@ -48,3 +48,3 @@ /* | ||
settings, | ||
mustLoadEnv = true, | ||
srcMustLoadEnv, | ||
preffix, | ||
@@ -54,2 +54,3 @@ parent, | ||
) { | ||
const mustLoadEnv = srcMustLoadEnv === undefined ? true : srcMustLoadEnv; | ||
if (typeof name !== 'string') { | ||
@@ -56,0 +57,0 @@ settings = name; |
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
30889
634
Updated@nlpjs/core@^4.11.0