docs(build): link library in build script

This commit is contained in:
Eric Liu 2020-10-09 18:54:12 -07:00
commit d0defc556f

View file

@ -1,8 +1,11 @@
const shell = require("shelljs");
shell.cd("../");
shell.exec("yarn install");
shell.exec("yarn");
shell.exec("yarn build:css");
shell.exec("yarn link");
shell.cd("docs");
shell.exec("yarn link 'carbon-components-svelte'");
shell.exec("yarn");
shell.exec("routify run -b");
shell.exec("svite build");