chore(package-lock): add integrity check info

Refs #7341
This commit is contained in:
Vladimir Gorej
2021-07-19 09:59:57 +02:00
parent f6b084c207
commit 4c369b0027
2 changed files with 5 additions and 4 deletions

View File

@@ -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"),
},
},