Skip to content

Commit

Permalink
Install dependencies for website (prettier#12566)
Browse files Browse the repository at this point in the history
  • Loading branch information
sosukesuzuki committed Mar 31, 2022
1 parent b40a5d0 commit 250847c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/release/steps/install-dependencies.js
Expand Up @@ -5,6 +5,9 @@ async function install() {
await execa("rm", ["-rf", "node_modules"]);
await runYarn(["install"]);

await execa("rm", ["-rf", "node_modules"], { cwd: "./website" });
await runYarn(["install"], { cwd: "./website" });

const { stdout: status } = await runGit(["ls-files", "-m"]);
if (status) {
throw new Error(
Expand Down

0 comments on commit 250847c

Please sign in to comment.