use add instead of install

This commit is contained in:
Joao Moreno 2017-11-15 17:10:28 +01:00
parent fbed34f2f6
commit a7ded33d52

View file

@ -6,7 +6,7 @@
const cp = require('child_process');
function yarnInstall(package: string): void {
cp.execSync(`yarn install --no-lockfile ${package}`);
cp.execSync(`yarn add --no-lockfile ${package}`);
}
const product = require('../../../product.json');