From 5dbfabbe9b2b603b9e08910a2e80a79bfaf92632 Mon Sep 17 00:00:00 2001 From: Will Soto Date: Sun, 10 Feb 2019 10:19:25 -0500 Subject: [PATCH] fix(package): point main and module at the correct files Signed-off-by: Will Soto --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 5d7f9784..999171aa 100644 --- a/package.json +++ b/package.json @@ -67,7 +67,8 @@ "git add" ] }, - "main": "src/index.ts", + "main": "dist/nestjs-objection.umd.js", + "module": "dist/nestjs-objection.esm.js", "name": "@willsoto/nestjs-objection", "peerDependencies": { "@nestjs/common": ">=5.4.0",