SIGN IN SIGN UP
jdan / 98.css UNCLAIMED

A design system for building faithful recreations of old UIs

0 0 0 CSS
2020-04-25 19:47:53 -04:00
const chokidar = require("chokidar");
const build = require("./build");
chokidar
.watch(["style.css", "build.js", "docs", "fonts", "icon"], {
usePolling: true,
})
.on("change", (file) => {
console.log(
`[${new Date().toLocaleTimeString()}] ${file} changed -- rebuilding...`
);
build();
});
2020-04-25 20:05:47 -04:00
var liveServer = require("live-server");
liveServer.start({ port: 3000, root: "dist" });