prettier/scripts/release/steps/install-dependencies.js

21 lines
488 B
JavaScript

"use strict";
const execa = require("execa");
const { logPromise } = require("../utils");
async function install() {
await execa("rm", ["-rf", "node_modules"]);
await execa("yarn", ["install"]);
const status = await execa.stdout("git", ["ls-files", "-m"]);
if (status) {
throw Error(
"The lockfile needs to be updated, commit it before making the release."
);
}
}
module.exports = function() {
return logPromise("Installing NPM dependencies", install());
};