mirror of
https://github.com/vacp2p/vac.dev-experimental-old.git
synced 2025-02-18 08:17:20 +00:00
89 lines
2.1 KiB
JavaScript
89 lines
2.1 KiB
JavaScript
import purgecss from "@fullhuman/postcss-purgecss";
|
|
import autoprefixer from "autoprefixer";
|
|
import browserSync from "browser-sync";
|
|
import spawn from "cross-spawn";
|
|
import cssnano from "cssnano";
|
|
import { dest, series, src, task, watch } from "gulp";
|
|
import postcss from "gulp-postcss";
|
|
import atimport from "postcss-import";
|
|
import tailwindcss from "tailwindcss";
|
|
|
|
const SITE_ROOT = "./_site";
|
|
const POST_BUILD_STYLESHEET = `${SITE_ROOT}/assets/css/`;
|
|
const PRE_BUILD_STYLESHEET = "./src/style.css";
|
|
const TAILWIND_CONFIG = "./tailwind.config.js";
|
|
|
|
// Fix for Windows compatibility
|
|
const jekyll = process.platform === "win32" ? "jekyll.bat" : "jekyll";
|
|
|
|
const isDevelopmentBuild = process.env.NODE_ENV === "development";
|
|
|
|
task("buildJekyll", () => {
|
|
browserSync.notify("Building Jekyll site...");
|
|
|
|
const args = ["exec", jekyll, "build"];
|
|
|
|
if (isDevelopmentBuild) {
|
|
args.push("--incremental");
|
|
}
|
|
|
|
return spawn("bundle", args, { stdio: "inherit" });
|
|
});
|
|
|
|
task("processStyles", () => {
|
|
browserSync.notify("Compiling styles...");
|
|
|
|
return src(PRE_BUILD_STYLESHEET)
|
|
.pipe(
|
|
postcss([
|
|
atimport(),
|
|
tailwindcss(TAILWIND_CONFIG),
|
|
...(!isDevelopmentBuild
|
|
? [
|
|
purgecss({
|
|
content: [`${SITE_ROOT}/**/*.html`],
|
|
defaultExtractor: (content) =>
|
|
content.match(/[\w-/:]+(?<!:)/g) || [],
|
|
}),
|
|
autoprefixer(),
|
|
cssnano(),
|
|
]
|
|
: []),
|
|
])
|
|
)
|
|
.pipe(dest(POST_BUILD_STYLESHEET));
|
|
});
|
|
|
|
task("startServer", () => {
|
|
browserSync.init({
|
|
files: [SITE_ROOT + "/**"],
|
|
open: "local",
|
|
port: 4000,
|
|
server: {
|
|
baseDir: SITE_ROOT,
|
|
serveStaticOptions: {
|
|
extensions: ["html"],
|
|
},
|
|
},
|
|
});
|
|
|
|
watch(
|
|
[
|
|
"**/*.css",
|
|
"**/*.html",
|
|
"**/*.js",
|
|
"**/*.md",
|
|
"**/*.markdown",
|
|
"!_site/**/*",
|
|
"!node_modules/**/*",
|
|
],
|
|
{ interval: 500 },
|
|
buildSite
|
|
);
|
|
});
|
|
|
|
const buildSite = series("buildJekyll", "processStyles");
|
|
|
|
exports.serve = series(buildSite, "startServer");
|
|
exports.default = series(buildSite);
|