From fdac81743f0761966426d13028c879d39178d0ea Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 6 Aug 2019 17:54:33 +0300 Subject: [PATCH] Flextype Core: Default theme - update assets building process and GULP to 4.X.X #206 #186 - updating gulpfile js --- site/themes/default/gulpfile.js | 7 ------- site/themes/default/package.json | 3 --- 2 files changed, 10 deletions(-) diff --git a/site/themes/default/gulpfile.js b/site/themes/default/gulpfile.js index 6e1400da..228187ec 100755 --- a/site/themes/default/gulpfile.js +++ b/site/themes/default/gulpfile.js @@ -17,12 +17,6 @@ function moveBootstrapCss() { .pipe(dest('assets/dist/css/tmp')); } -function moveAnimateCss() { - return src('node_modules/animate.css/animate.min.css') - .pipe(concat('2.min.css')) - .pipe(dest('assets/dist/css/tmp')); -} - function moveSimpleLightboxCss() { return src('node_modules/simplelightbox/dist/simplelightbox.min.css') .pipe(concat('3.min.css')) @@ -82,7 +76,6 @@ function cleanTmpJs() { } exports.default = series(moveBootstrapCss, - moveAnimateCss, moveSimpleLightboxCss, buldDefaultCss, mergeCss, diff --git a/site/themes/default/package.json b/site/themes/default/package.json index 95a74f18..32e2a174 100755 --- a/site/themes/default/package.json +++ b/site/themes/default/package.json @@ -2,8 +2,6 @@ "name": "Default", "version": "1.0.0", "devDependencies": { - "animate.css": "^3.7.2", - "bootstrap": "^4.3.1", "del": "^5.0.0", "es6-promise": "^4.2.4", "gulp": "^4.0.2", @@ -13,7 +11,6 @@ "gulp-sass": "^4.0.2", "gulp-sourcemaps": "^2.6.5", "jquery": "^3.4.1", - "popper.js": "^1.15.0", "simplelightbox": "^1.17.2" } }