gustwind icon indicating copy to clipboard operation
gustwind copied to clipboard

🐳💨 – Deno powered site creator

Results 40 gustwind issues
Sort by recently updated
recently updated
newest added

This should help with the performance further because: 1. Doing this allows reusing parent `dataSources` 2. It defers indexing (more work to be done at workers) 3. Avoids having to...

enhancement

Since there are `data-id`s per component already, likely this should be quite simple addition. Reference: https://github.com/infi-pc/locatorjs

enhancement

Use case: ```json { "type": "SiteLink", "attributes": { "aria-label": "Read more about Seminole tax hike" }, "props": { "children": "Buy tickets", "href": "https://ti.to/future-frontend/2023" } } ``` There are times when...

enhancement

grapesjs has a powerful client-side editor and it may be worth studying in detail to understand how to expand the existing editor.

enhancement

As shown by https://deno.com/blog/v1.38, using string concatenation has performance benefits. Porting breezewind to use the same idea may be worth a go if performance becomes an issue.

enhancement
performance

The idea would be to consume data (for example https://github.com/ReactFinland/graphql-api) and then generate JSON files as a static API. This would need a custom renderer plugin and some logic on...

The development server should restart if the project plugin definition changes. Now it's using a static lookup which is enough for most use cases as the definition doesn't change often.

enhancement

The idea would be to check an earlier compilation (hash against the JSON files?) and avoid compilation when possible. The current design already allows this but extra logic is needed.