From 351562f36b42ec65d188cc5c2c0fe1b82a0199d2 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 31 Jul 2022 23:18:38 +0200 Subject: [PATCH] gulpfile.js: update to build with bootstrap 5.2.0 --- gulpfile.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index fd3b36d..54dd86d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -14,7 +14,7 @@ var config = { pattern: 'app/assets/sass/**/*.scss', src: 'app/assets/sass/application.scss', opt: { - includePaths: [ 'node_modules/bootstrap-sass/assets/stylesheets' ] + includePaths: [ 'node_modules' ] }, outputDir: 'public/css', outputName: 'application' @@ -22,8 +22,9 @@ var config = { js: { src: [ 'node_modules/jquery/dist/jquery.js', + 'node_modules/@popperjs/core/dist/umd/popper.js', // Bootstrap - 'node_modules/bootstrap-sass/assets/javascripts/bootstrap.js', + 'node_modules/bootstrap/dist/js/bootstrap.js', // Font Awesome 'app/assets/js/font-awesome/regular.js', 'app/assets/js/font-awesome/solid.js',