diff --git a/src/cli/commands/licenses.js b/src/cli/commands/licenses.js index 8b72804285..9526e97547 100644 --- a/src/cli/commands/licenses.js +++ b/src/cli/commands/licenses.js @@ -16,7 +16,7 @@ export function hasWrapper(flags: Object, args: Array): boolean { async function getManifests(config: Config, flags: Object): Promise> { const lockfile = await Lockfile.fromDirectory(config.cwd); - const install = new Install({skipIntegrity: true, ...flags}, config, new NoopReporter(), lockfile); + const install = new Install({skipIntegrityCheck: true, ...flags}, config, new NoopReporter(), lockfile); await install.hydrate(true, true); let manifests = install.resolver.getManifests();