From ab51aed0c5f429faeca4b4f9d7c387f8abac8d69 Mon Sep 17 00:00:00 2001 From: RaviAnand Mohabir Date: Tue, 25 May 2021 23:15:33 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Use=20`main`=20instead=20of=20`m?= =?UTF-8?q?odule`=20in=20`package.json`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/package.json | 2 +- package.json | 2 +- providers/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/package.json b/client/package.json index eb0c1cb..71a6308 100644 --- a/client/package.json +++ b/client/package.json @@ -1,5 +1,5 @@ { "internal": true, - "module": "../dist/client/index.js", + "main": "../dist/client/index.js", "types": "../dist/client/index.d.ts" } diff --git a/package.json b/package.json index 14025d1..8e29bb0 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "sk-auth", "version": "0.3.5", "description": "Authentication library for use with SvelteKit featuring built-in OAuth providers and zero restriction customization!", - "module": "dist/index.js", + "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": "./dist/index.js", diff --git a/providers/package.json b/providers/package.json index a3539da..b3e90a0 100644 --- a/providers/package.json +++ b/providers/package.json @@ -1,5 +1,5 @@ { "internal": true, - "module": "../dist/providers/index.js", + "main": "../dist/providers/index.js", "types": "../dist/providers/index.d.ts" }