mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
const shell = require("shelljs");
|
|
|
|
shell.cd("../");
|
|
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");
|