carbon-components-svelte/docs/scripts/build.js
2020-10-09 18:26:20 -07:00

8 lines
185 B
JavaScript

const shell = require("shelljs");
shell.cd("../");
shell.exec("yarn install");
shell.exec("yarn build:css");
shell.cd("docs");
shell.exec("routify run -b");
shell.exec("svite build");