From 79177a5d68b3f7b9d4019300e41fa3db64d0fdc7 Mon Sep 17 00:00:00 2001 From: Shane Church Date: Wed, 14 Nov 2018 06:46:33 -0600 Subject: [PATCH] Updated .gitignore & .npmignore and fixed export from index.ts --- .gitignore | 3 ++- .npmignore | 17 +++++++++++++++++ index.ts | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 08dc7b0..1dd31ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules/ dist/ - +.vscode/ +*.tgz diff --git a/.npmignore b/.npmignore index e69de29..2f9bc82 100644 --- a/.npmignore +++ b/.npmignore @@ -0,0 +1,17 @@ +boostmovehub.ts +consts.ts +duplotrainbase.ts +hub.ts +index.ts +lpf2hub.ts +port.ts +poweredup.ts +puphub.ts +pupremote.ts +package-lock.json +tsconfig.json +tslint.json +utils.ts +wedo2smarthub.ts +.vscode/ +examples/ \ No newline at end of file diff --git a/index.ts b/index.ts index 31e6317..6ab9b0d 100644 --- a/index.ts +++ b/index.ts @@ -8,4 +8,4 @@ import { PUPRemote } from "./pupremote"; import { WeDo2SmartHub } from "./wedo2smarthub"; export default PoweredUP; -export { Hub, WeDo2SmartHub, BoostMoveHub, PUPHub, PUPRemote, DuploTrainBase, Consts }; +export { PoweredUP, Hub, WeDo2SmartHub, BoostMoveHub, PUPHub, PUPRemote, DuploTrainBase, Consts };