From 30edc807f0182b8df008814aeca203be044405a8 Mon Sep 17 00:00:00 2001 From: George Date: Tue, 31 Mar 2020 14:55:16 -0700 Subject: [PATCH] fix(utils): fix accidental duplicate export. (#70) Fix for styling; no behavior impact. --- lib/utils.js | 2 +- package-lock.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/utils.js b/lib/utils.js index 329ee90..68e3f4b 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -28,5 +28,5 @@ function warnInsecureAlgorithm(algorithm, enabled = true) { module.exports = { renderTemplate: renderTemplate, pemToCert: pemToCert, - warnInsecureAlgorithm, warnInsecureAlgorithm + warnInsecureAlgorithm: warnInsecureAlgorithm }; diff --git a/package-lock.json b/package-lock.json index cf2ac8c..9fdd2eb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "xml-encryption", - "version": "1.1.0", + "version": "1.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e694aed..71f890b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xml-encryption", - "version": "1.1.0", + "version": "1.1.1", "devDependencies": { "mocha": "^7.1.1", "should": "^11.2.1"