kube-workflow
Advanced tools
Comparing version 1.6.1 to 1.6.2
{ | ||
"name": "kube-workflow", | ||
"version": "1.6.1", | ||
"version": "1.6.2", | ||
"repository": "git@github.com:SocialGouv/kube-workflow.git", | ||
@@ -19,5 +19,5 @@ "license": "MIT", | ||
"lodash.defaultsdeep": "^4.6.1", | ||
"nctx": "^1.0.1", | ||
"pino": "^7.9.0", | ||
"pino-pretty": "^7.5.4", | ||
"nctx": "^1.2.0", | ||
"pino": "^7.9.2", | ||
"pino-pretty": "^7.6.0", | ||
"pretty-ms": "^7.0.1", | ||
@@ -31,5 +31,2 @@ "slugify": "^1.6.5" | ||
}, | ||
"peerDependencies": { | ||
"kube-workflow": "*" | ||
}, | ||
"jest": { | ||
@@ -36,0 +33,0 @@ "testTimeout": 10000 |
@@ -5,2 +5,3 @@ const patches = ["namespace", "kapp"] | ||
for (const patch of patches) { | ||
// eslint-disable-next-line import/no-extraneous-dependencies | ||
manifest = require(`./${patch}`)(manifest, values) | ||
@@ -7,0 +8,0 @@ } |
@@ -5,2 +5,3 @@ const patches = ["defaults"] | ||
for (const patch of patches) { | ||
// eslint-disable-next-line import/no-extraneous-dependencies | ||
manifest = require(`./${patch}`)(manifest, values) | ||
@@ -7,0 +8,0 @@ } |
@@ -9,2 +9,10 @@ const { createHash } = require("crypto") | ||
const suffix = (name) => { | ||
const hex = Buffer.from( | ||
createHash("sha256").update(name).digest("hex") | ||
).toString() | ||
return parseInt(hex, 16).toString(36).slice(0, 6) | ||
} | ||
const slugString = (name, len) => { | ||
@@ -28,10 +36,2 @@ let slugified = slugify(name, { | ||
const suffix = (name) => { | ||
const hex = Buffer.from( | ||
createHash("sha256").update(name).digest("hex") | ||
).toString() | ||
return parseInt(hex, 16).toString(36).slice(0, 6) | ||
} | ||
const slug = (mixed, options = {}) => { | ||
@@ -38,0 +38,0 @@ const { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
303496
16
120
1122
Updatednctx@^1.2.0
Updatedpino@^7.9.2
Updatedpino-pretty@^7.6.0