From 4c369b0027fa99b0bd336a18692417861a8acc49 Mon Sep 17 00:00:00 2001 From: Vladimir Gorej Date: Mon, 19 Jul 2021 09:59:57 +0200 Subject: [PATCH] chore(package-lock): add integrity check info Refs #7341 --- package-lock.json | 3 ++- webpack/_config-builder.js | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index bb6d8f48..19ff51f0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -26248,7 +26248,8 @@ }, "ssri": { "version": "6.0.1", - "resolved": "", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", "dev": true, "requires": { "figgy-pudding": "^3.5.1" diff --git a/webpack/_config-builder.js b/webpack/_config-builder.js index ec971b64..2f2c3754 100644 --- a/webpack/_config-builder.js +++ b/webpack/_config-builder.js @@ -124,12 +124,12 @@ export default function buildConfig( resolve: { modules: [path.join(projectBasePath, "./src"), "node_modules"], extensions: [".web.js", ".js", ".jsx", ".json", ".less"], - // these aliases make sure that we don't bundle same libraries twice - // when the versions of these libraries diverge between swagger-js and swagger-ui alias: { + // these aliases make sure that we don't bundle same libraries twice + // when the versions of these libraries diverge between swagger-js and swagger-ui "@babel/runtime-corejs3": path.resolve(__dirname, "..", "node_modules/@babel/runtime-corejs3"), "js-yaml": path.resolve(__dirname, "..", "node_modules/js-yaml"), - "lodash": path.resolve(__dirname, "..", "node_modules/lodash") + "lodash": path.resolve(__dirname, "..", "node_modules/lodash"), }, },