Hugo

Results 49 comments of Hugo

For anyone finding this issue. In order to access the function, you need to do `window.startEvent = startEvent` (there's a note about this in the Alpine docs, by default webpack/bundlers...

@soultrue could you try using a regular function (instead of arrow)?

Wait is this a TypeScript issue?

``` const getCurrentDate = (function () { return new Date() }; } as any); ```

I think they're using creative commons to be able to commercially license the data/system while allowing non-profit research use without charging

Not sure if this is helpful but the flag the needs to be passed to Node is [`--test-only`](https://nodejs.org/api/cli.html#--test-only).

@marwanhawari if this is still of interest I can work on a Pull Request

@marwanhawari PR is ready for review https://github.com/marwanhawari/stew/pull/49 I wonder if we should also be excluding draft releases? (unless something is doing that for us already)

This looks suspiciously like an injection bug (related to CSPs?) that I fixed on Alpine devtools (https://github.com/alpine-collective/alpinejs-devtools/issues/445) In my case the culprit was injection via extension URL: https://github.com/vuejs/devtools/blob/main/packages/firefox-extension/src/injection.ts#L2 The fix...