Tomasz Pluskiewicz
Tomasz Pluskiewicz
I'm looking into ways for improving hydra APIs by using cache headers. A [first-order recommendation](https://simonhearne.com/2022/caching-header-best-practices/#the-solution) is to use versioned assets and long-lived immutable cache. I think this fits the most...
Right now all template variables return literals regardless of the `hydra:variableRepresentation`. With `hydra:ExplicitRepresentation` those values should be parsed to exact terms based on their lexical form in he query string
It seems repetitive and unnecessary to check the request object every time for the body like ```js function (req, res) { if (!req.dataset) { res.send(400) } // happy path }...
tl;dr; I think `yargs` did not work synchronously with node loaders which are async. This would probably apply not only to `tsx. While there is no test scenario which covers...
This package cannot be imported in a regular setup but a mocha root hook is an alternative to importing in test suites which need it closes #16
> Error: Detected commands for: Hydrogen, Remix. Update your settings to specify which to use. Refer to https://ntl.fyi/dev-monorepo for more information. Anyone saw that? https://github.com/netlify/cli/issues/6841 suggests to simply pin the...
I tried to remember current working directory as `PWD=$(pwd)`. I was not aware that it won't work. I would be nice to have a warning
The TypeScript target produces a visitor similar to the following: ```ts export default class FooVisitor extends ParseTreeVisitor { /** * Visit a parse tree produced by `FooParser.bar`. * @param ctx...
**Describe the bug** As a follow **To Reproduce** 1. Set up i18n 1. Create a new item 2. Write some content in default language 3. Choose `Fill in from another...
For example, trying to import `[email protected]` will fail because the node export will be resolved. Here's excerpt from the package.json ```json { "name": "nanoid", "exports": { ".": { "browser": "./index.browser.js",...