Curran Kelleher
Curran Kelleher
Related to https://github.com/datavis-tech/vizhub-ui/issues/109 Idea: Store a timestamp for each login, then use that to compute monthly active users.
Great point! Yes, this feature is missing. It would be a good thing to have.
@Fil Thanks for the no-paren style suggestion! I went ahead and changed the rest of the inline `function` definitions to use fat arrow syntax.
This is probably a good move.
I came across this issue as well. It would be great to get the build size down. I wonder what is causing it...  This might be useful in tracking...
The pattern is already there for the sound module. I think it would be excellent if all the WebGL-related things were chunked out into a similar external file. 
Here's something that worked for me in Vite (super sketchy): ```js import Row from 'react-bootstrap/cjs/Row.js'; import ColRaw from 'react-bootstrap/cjs/Col.js'; const Col = ColRaw.default || ColRaw; export { Row, Col, };...
Nice, thanks! That's what I found and it does work, but there's also an additional step to transform the buffer into an array. This is what I ended up doing...
Awesome! Would you be able to add a failing unit test? That would help immensely in implementing this.
I suppose that API definition could come from the unit test. I like test-driven development, where first we show what we want to invocation to look like, then build support...