[plugin helpers] Using --pure-lockfile instead of --frozen-lockfile (#17275) (#17277)

This commit is contained in:
Kim Joar Bekkelund 2018-03-20 20:37:16 +01:00 committed by GitHub
parent eef43e1e95
commit a76d1b6e89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,7 +63,7 @@ module.exports = function createBuild(plugin, buildTarget, buildVersion, kibanaV
stdio: ['ignore', 'ignore', 'pipe'],
};
execFileSync(winCmd('yarn'), ['install', '--production', '--frozen-lockfile'], options);
execFileSync(winCmd('yarn'), ['install', '--production', '--pure-lockfile'], options);
})
.then(function () {
const buildFiles = [relative(buildTarget, buildRoot) + '/**/*'];