From 32f649059b737eb0b04592aa0753356eb109872f Mon Sep 17 00:00:00 2001 From: T Morehouse Date: Thu, 30 May 2019 19:20:53 -0300 Subject: [PATCH] chore: add `"source": "src/index.js"` entry in package.json Allows the Parcel bundler (and potentially more in the future) to use the source code as the module. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 4beecfbe85b..e791f565066 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "web": "dist/bootstrap-vue.js", "module": "esm/index.js", "jsnext:main": "esm/index.js", + "source": "src/index.js", "style": "dist/bootstrap-vue.css", "license": "MIT", "types": "src/index.d.ts",