Add animate.css as library

This commit is contained in:
alonso.torres 2023-11-27 14:31:05 +01:00
parent 58afa7498e
commit c98f2628f0
4 changed files with 12 additions and 1 deletions

View file

@ -234,7 +234,11 @@ gulp.task("scss:modules", function () {
gulp.task("scss:main", function () {
return gulp
.src(paths.resources + "styles/main-default.scss")
.pipe(gulpSass.sync().on("error", gulpSass.logError))
.pipe(gulpSass.sync({
includePaths: [
"./node_modules/animate.css"
]
}))
.pipe(gulpPostcss([autoprefixer]))
.pipe(gulp.dest(paths.output + "css/"));
});