Brian M Hunt

Results 223 comments of Brian M Hunt

There are some problems. For example, the TC `Observable` is not a function; the Knockout observable is essentially both the entity being observed and the observable class. Which doesn't make...

If we're going to be making an ES6 class of the TKO Observable (and arguably we should), here's a discussion maybe worth noting: http://stackoverflow.com/questions/36871299/how-to-extend-function-with-es6-classes

Yeah, this requires some thought, I believe. These are the priorities that come to mind: 1. Maintain backwards compat 2. Add new functionality for compatibility with TC 3. Polyfill TC...

@far-blue I'm copying your issue from tko.observable (and closing tko.observable issues as we've since/just moved to a monorepo here), as: >There's a standards proposal for ES8 (https://github.com/tc39/proposal-observable) which takes the...

Not abandoned at all, still very actively used, but as it's being used in an early-stage company we're being extra careful about our support surface. Hopefully positive things to report...

@mattlacey Glad to hear your interest. The current largest code-base for TKO (that I know of) is around 100 KO web-components over 100,000 lines of JSX+[JSS](https://cssinjs.org/?v=v10.6.0)+Typescript. I'm hoping to round...

TS is fine. I have no idea how it works, but so long as it does, I'm good with that. :)

@caseyWebb I've gotten testing working, but I had to make some changes to the packages, per 67ec170b6a2d573b6ee013474d3ef38cee90d087 and c07a2d192beebff07dac931fb38d83493ab2652f – do you see anything breaking from these? Notable changes: -...

Thanks @caseyWebb - On the Typescript issue, I got a great answer here: https://blog.mariusschulz.com/2017/06/30/typescript-2-3-downlevel-iteration-for-es3-es5 - On the `module` consumers, it's a great point. It might be preferable to rewrite the...

Re. modules, going to go on what Rich Harris said here: https://github.com/rollup/rollup/wiki/pkg.module - > ## Wait, it just means import and export – not other future JavaScript features? > Yes....