Glen Maddern

Results 25 comments of Glen Maddern

Interesting problem! Feels like Remix is introducing new semantics for a single TS file, a bit like the way Vue did with its single-file components that had pretty dreadful editor...

Yup, tbh I think this could even be an extension to this: https://github.com/microsoft/TypeScript/issues/38511 Would be amazing to describe a module as requiring certain valid export types _and_ that the body...

I agree that integration tests are a great User 0 case for this. But I'm curious, there are community dev tools out there that use the CF API endpoints directly...

This also appears to be a problem specifically with `1.3.7` now pointing at the `dist` file (as of [this commit](https://github.com/acquia/waterwheel.js/commit/1477219b7769d55c3e9d054efb55860e4a94361e)) In `1.3.6`, the main export was `"lib/waterwheel.js" which just worked....

Nah there'll be no difference in terms of billing for `functions/[[all]].ts` and `_workers.js`. The current plan is you'll emit a `_routes.json` as well which can `include` or `exclude` paths to...

It'll be quite similar to [tsconfig include/exclude](https://www.typescriptlang.org/tsconfig#include=) but the exact wildcard support is not finalised as we need to do some perf testing on a couple of options. Had to...

What's your boundary of a "module" here? Is it a component or just CSS? If I was to rephrase, I'd suggest that you'd want to be able to export: ```js...

`ICJS` is kinda cool. But how about `ISTF` Interoperable Styling Transfer Format? Or `S4F` for Style Sheet Standard Serialisation Format 😜

Yeah once I'd sent that last one I realised my mistake with the `t` var. FWIW on a second look, the getters-based one looks great to my eyes, makes the...

That's a good point, @CraigglesO... Each test _should_ start from a clean slate (if you're using in-memory DBs, at least), but `beforeEach` is really part of a test, so it...