grafana/grafana-aws-sdk

package.json main is incorrect

joshhunt opened this issue · 2 comments

the main field in package.json points to the wrong file

"main": "dist/index.js",

It should just be "main": "index.js", as that file then points to either development or production builds in the dist folder.

While webpack doesn't seem to have a problem with this (which surprises me), other bundlers use this field to know what to import.