diff --git a/docs/scripts/build.js b/docs/scripts/build.js index 5a8c31c1..1c4696c4 100644 --- a/docs/scripts/build.js +++ b/docs/scripts/build.js @@ -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");