appscode-api-js-client
Advanced tools
Comparing version 1.0.3 to 1.0.4
var fs = require('fs'); | ||
var path = require('path'); | ||
module.exports = function (dir, depth, apis) { | ||
var load = function (dir, depth, apis) { | ||
depth = depth || 0; | ||
@@ -9,3 +9,3 @@ apis = apis || {}; | ||
if (fs.statSync(dir + '/' + file).isDirectory()) { | ||
apis = walkSync(dir + file + '/', depth + 1, apis); | ||
apis = load(dir + file + '/', depth + 1, apis); | ||
} | ||
@@ -24,2 +24,4 @@ else { | ||
return apis; | ||
}(path.join(__dirname, './apis/')); | ||
}; | ||
module.exports = load(path.join(__dirname, './apis/')); |
{ | ||
"name": "appscode-api-js-client", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "AppsCode API JavaScript Client", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
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
50057
1264
1