From 90cca97ce3b253f093c10674d49742717db53ca2 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Fri, 19 May 2023 19:40:31 +0200 Subject: [PATCH] Specify exact dependencies --- gulpfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index cdbeec6..1d5cde2 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -36,8 +36,10 @@ function jsMinify() { function publishAssets() { return src([ - 'node_modules/bootstrap/dist/js/bootstrap.bundle.*', + 'node_modules/bootstrap/dist/js/bootstrap.bundle.min.js', + 'node_modules/bootstrap/dist/js/bootstrap.bundle.min.js.map', 'node_modules/node-forge/dist/forge.min.js', + 'node_modules/node-forge/dist/forge.min.js.map', ]).pipe(dest('public/js')); }