Commit df0718d3 authored by nanahira's avatar nanahira

use save exact

parent 20b220fd
......@@ -66,7 +66,7 @@ async function checkPluginExists(name: string) {
async function npmInstall(name: string) {
logger.info(`Installing package ${name}.`);
try {
await execAsync(`npm install --loglevel error ${name}`);
await execAsync(`npm install --save-exact --loglevel error ${name}`);
logger.info(`Package ${name} installed.`);
return true;
} catch (e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment