Joe Pea
Joe Pea
> Does this mean the [mainGroup](https://github.com/tweenjs/tween.js/blob/e01bbdbebe2d05509b73bbbe7dc7438228124a9e/src/Tween.ts#L52C62-L52C62) is deprecated? Yeah, that would be removed. Instead, people would: - create and control individual tweens - create groups if they want to control...
@nya13 thank you for the input! > Pausing tweens inside a Group terminates them completely, which is not correct That may indeed be true. The current`TWEEN` group should have the...
I added a new one to the list: > Remove the `autostart` parameter from `tween.update(time, autostart)`. It makes the API less intuitive: for example if you call `stop()` and then...
@ronaldcurtis Good point! Haven't removed CJS yet (in fact, the CJS `exports` condition in package.json is fixed). Looks like ESM support in Electron finally landed in August! Docs: https://www.electronjs.org/docs/latest/tutorial/esm Are...
I don't have `prettierPath` configured, but I keep getting this error after a while. Then I restart, am good for a while, then it comes back again. I keep restarting...
In my case, I'm not trying to interpolate anything inside the ``. But I would imagine interpolating should work. I could imagine someone could interpolate to update the template content,...
Interesting, how can all tests have passed. Still need to update code.
Maybe it can be just `Comp.call(null, props)`, and a class can use `this`, as in ```js class ShowCount { static call(_, props) { return new this().template(props) } ... } ```...
I can't build or test locally, I get ``` ERROR workspace configuration error: package.json: no workspaces found. Turborepo requires npm workspaces to be defined in the root package.json ``` Also...
That's interesting that a JS engine doesn't simply optimize away what are essentially identical calls. > alternatively, the class can be wrapper in a "functional factory". with minimal overhead (