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

This commit is contained in:
Kim Joar Bekkelund 2018-03-20 19:32:20 +01:00 committed by GitHub
parent 0ca3984503
commit a25f0c0ccb
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) + '/**/*'];