From 4df56d2516bbbc067bf148ab9272f115ae7d17e1 Mon Sep 17 00:00:00 2001 From: Priyansh Garg Date: Tue, 11 Oct 2022 17:07:25 +0530 Subject: [PATCH] Export AndroidSetup and IosSetup. --- package.json | 2 +- src/index.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c1eac71..1d7849e 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@nightwatch/mobile-helper", "version": "0.0.1", "description": "Mobile helper tool to easily setup mobile requirements", - "main": "dist/index.js", + "main": "src/index.ts", "bin": "./index.js", "scripts": { "build": "tsc", diff --git a/src/index.ts b/src/index.ts index 5abd814..2dfb787 100644 --- a/src/index.ts +++ b/src/index.ts @@ -42,3 +42,5 @@ const showHelp = (cmdPassed: string, helpFlag: boolean) => { console.log(`To know more about each command, run: ${colors.cyan('npx @nightwatch/mobile-helper _command_name_ --help')}`); }; + +export {AndroidSetup, IosSetup};