bubble-dev / _

🍱 metarepo of many packages and various monorepos
52 stars 6 forks source link

`hsvaToRbga is not a function` #380

Closed corysimmons closed 4 years ago

corysimmons commented 4 years ago

image

Build to commonjs please?

xaviervia commented 4 years ago

Hi @corysimmons,

In retrospective I would have used named exports since they play nicer with a lot of editor features and work in both systems.

You can still use the require() notation as with any ESM optimized package, just add .default to it. The main build (node/index.js) is a CJS build so there should be no compatibility issue.

Screen Shot 2020-05-21 at 15 51 41
corysimmons commented 4 years ago
.default

🤩 TIL. Thank you!