From 22b4362d83f8534ea9492a2b5f39bc2df8c5059d Mon Sep 17 00:00:00 2001 From: Kirill Vasiltsov <38713361+jlkiri@users.noreply.github.com> Date: Sun, 21 Jun 2020 03:30:52 +0900 Subject: [PATCH] Expose install function (#518) * Expose install function * Change export to unstable --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 57da32e522..d293b9cc61 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,6 +9,7 @@ import {CLIFlags, loadAndValidateConfig} from './config.js'; import {readLockfile, clearCache} from './util.js'; export {createConfiguration} from './config.js'; +export {install as unstable_installCommand} from './commands/install'; const cwd = process.cwd();