diff --git a/gulpfile.js b/gulpfile.js index 2aa2995..1fa152c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -48,6 +48,14 @@ function watch() { gulp.task("build", async function () { gulp.src(paths.scripts.src).pipe(minify()).pipe(gulp.dest("static/dist/js")); + gulp + .src(paths.styles_scss.src) + .pipe( + scss({ + bundleExec: true, + }) + ) + .pipe(gulp.dest("static/src/css")); gulp .src(paths.styles_css.src) .pipe(cssmin()) @@ -63,11 +71,11 @@ exports.watch = watch; var paths = { styles_scss: { - src: "static/src/scss/**/*.scss", - dest: "static/src/css", + src: ["static/src/scss/**/*.scss", "!static/src/scss/vars.scss"], + dest: ["static/src/css"], }, styles_css: { - src: "static/src/css/style.css", + src: "static/src/css/*.css", dest: "static/dist/css", }, scripts: { diff --git a/index.html b/index.html index 3b5f730..e44999c 100644 --- a/index.html +++ b/index.html @@ -55,13 +55,111 @@ - + + + +

- En construcción. Vuelve pronto. + En construcción Vuelve pronto.