Pomax / bezierjs

A nodejs and client-side library for (cubic) Bezier curve work
MIT License
1.7k stars 230 forks source link

Release v6.1.2 broken #193

Closed Niek closed 1 year ago

Niek commented 1 year ago

The recent release v6.1.2 is broken. Here's a quick test:

$ npm ls bezier-js
└── bezier-js@6.1.0
$ node -e "console.log(require('bezier-js'))"
{ Bezier: [class Bezier] }
# all good, now let's upgrade to v6.1.2
$ npm i bezier-js@6.1.2
$ node -e "console.log(require('bezier-js'))"   
{}

I assume it has something to do with the new esbuild.

Pomax commented 1 year ago

Which version of Node?

Pomax commented 1 year ago

changed the esbuild args and test with node 16, should be fixed now in v6.1.3

Niek commented 1 year ago

I can confirm this is fixed in v6.1.3, thanks!