From 8b6f1e5111c75b86a47af136a6c15df33a89c970 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Thu, 14 Nov 2019 21:07:47 -0500 Subject: [PATCH] Remove the bootstrap javascript from the public js as it makes more sense to include as needed --- gulpfile.js | 2 -- traditional-bootstrap/gulpfile.js | 2 -- 2 files changed, 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index e781202..7affc77 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -46,8 +46,6 @@ const jsPublic = "resources/assets/js/app.js"; // Javascript libraries for the public site const jsPublicLibs = [ "node_modules/jquery/dist/jquery.js", - "node_modules/popper.js/dist/umd/popper.js", - "node_modules/bootstrap/dist/js/bootstrap.js", "node_modules/gsap/src/uncompressed/TweenMax.js", "node_modules/what-input/dist/what-input.js" ]; diff --git a/traditional-bootstrap/gulpfile.js b/traditional-bootstrap/gulpfile.js index 7a50e8d..9c9670d 100644 --- a/traditional-bootstrap/gulpfile.js +++ b/traditional-bootstrap/gulpfile.js @@ -44,8 +44,6 @@ const jsPublic = [ // Javascript libraries for the public site const jsPublicLibs = [ "node_modules/jquery/dist/jquery.js", - "node_modules/popper.js/dist/umd/popper.js", - "node_modules/bootstrap/dist/js/bootstrap.js", "node_modules/gsap/src/uncompressed/TweenMax.js", "node_modules/what-input/dist/what-input.js" ];