mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
docs: use shelljs to execute build step
This commit is contained in:
parent
fce253f704
commit
4d9cdc7e10
3 changed files with 33 additions and 5 deletions
8
docs/scripts/build.js
Normal file
8
docs/scripts/build.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
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");
|
Loading…
Add table
Add a link
Reference in a new issue