Pull in gsap-core instead of tweenmax

This commit is contained in:
Kevin MacMartin 2019-11-15 14:28:08 -05:00
parent 03d220fb1b
commit 964c6b9186
2 changed files with 2 additions and 2 deletions

2
gulpfile.js vendored
View file

@ -46,7 +46,7 @@ const jsPublic = "resources/js/app.js";
// Javascript libraries for the public site // Javascript libraries for the public site
const jsPublicLibs = [ const jsPublicLibs = [
"node_modules/jquery/dist/jquery.js", "node_modules/jquery/dist/jquery.js",
"node_modules/gsap/src/uncompressed/TweenMax.js", "node_modules/gsap/gsap-core.js",
"node_modules/what-input/dist/what-input.js" "node_modules/what-input/dist/what-input.js"
]; ];

View file

@ -44,7 +44,7 @@ const jsPublic = [
// Javascript libraries for the public site // Javascript libraries for the public site
const jsPublicLibs = [ const jsPublicLibs = [
"node_modules/jquery/dist/jquery.js", "node_modules/jquery/dist/jquery.js",
"node_modules/gsap/src/uncompressed/TweenMax.js", "node_modules/gsap/gsap-core.js",
"node_modules/what-input/dist/what-input.js" "node_modules/what-input/dist/what-input.js"
]; ];