From 919a910f6e05c715fce90c10e402a4c89212b6a8 Mon Sep 17 00:00:00 2001 From: Simon Vocella Date: Sun, 23 Apr 2017 18:46:31 +0200 Subject: [PATCH] rename skipIntegrity in skipIntegrityCheck --- src/cli/commands/licenses.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();