thegecko / web-bluetooth-dfu

Device firmware update with Web Bluetooth
https://thegecko.github.io/web-bluetooth-dfu/
MIT License
96 stars 41 forks source link

Unable to import library inside a vue.js project #58

Open xsorifc28 opened 3 years ago

xsorifc28 commented 3 years ago

I'm not able to import using:

import { SecureDfu } from 'web-bluetooth-dfu';

Result:

This dependency was not found:

* web-bluetooth-dfu in ...

However both of these do work:

import SecureDfu from 'web-bluetooth-dfu/lib';
// or
import { SecureDfu } from 'web-bluetooth-dfu/lib/secure-dfu';