Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const vendorInstall = () => {
terminal.print(`
Installing vendors via npm
`);
fss.remove(paths.directory.vendorsDependencies);
fss.remove(`${paths.directory.vendors}/package-lock.json`);
terminal.run(`cd ${paths.directory.vendors} && npm install --no-audit`);
};