Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .oxfmtrc.jsonc
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"ignorePatterns": [],
// custom below, zero-config above.
// we're migrating from prettier to oxfmt, below will be removed once complete.
"printWidth": 80,
"trailingComma": "es5",
"experimentalSortPackageJson": {
Expand Down
5 changes: 0 additions & 5 deletions .prettierrc

This file was deleted.

24 changes: 13 additions & 11 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,19 @@ Currently, we have below features / modules.

## Project Structure

- [docs](./docs) - the docs directory
- [format](./format) - grida file formats & schemas
- [editor](./editor) - the editor directory
- [crates](./crates) - the rust crates directory
- [packages](./packages) - shared packages
- [desktop](./desktop) - the electron desktop app
- [supabase](./supabase) - the supabase project
- [apps](./apps) - micro sites for Grida
- [library](./library) - hosted library workers
- [jobs](./jobs) - hosted jobs
- [.legacy](./legacy) - will be removed (fully ignore this directory)
| directory | README | AGENTS | notes |
| ---------------------- | -------------------------------------------- | -------------------------------------------- | --------------------------------------------- |
| [docs](./docs) | - | [`docs/AGENTS.md`](./docs/AGENTS.md) | the docs directory |
| [format](./format) | [`format/README.md`](./format/README.md) | [`format/AGENTS.md`](./format/AGENTS.md) | grida file formats & schemas |
| [editor](./editor) | - | [`editor/AGENTS.md`](./editor/AGENTS.md) | the editor directory |
| [crates](./crates) | - | - | the rust crates directory |
| [packages](./packages) | - | - | shared packages |
| [desktop](./desktop) | [`desktop/README.md`](./desktop/README.md) | - | the electron desktop app |
| [supabase](./supabase) | [`supabase/README.md`](./supabase/README.md) | [`supabase/AGENTS.md`](./supabase/AGENTS.md) | the supabase project |
| [apps](./apps) | - | - | micro sites for Grida |
| [library](./library) | [`library/README.md`](./library/README.md) | - | hosted library workers |
| [jobs](./jobs) | [`jobs/README.md`](./jobs/README.md) | - | hosted jobs |
| [.legacy](./.legacy) | - | - | will be removed (fully ignore this directory) |

## Languages, Frameworks, Tools, Infrastructures

Expand Down
1 change: 1 addition & 0 deletions CLAUDE.md
2 changes: 1 addition & 1 deletion crates/grida-canvas-fonts/src/parse_ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl UIFontFaceOwned {
}

/// Convert to zero-copy version for internal processing
pub fn as_borrowed(&self) -> UIFontFace {
pub fn as_borrowed(&self) -> UIFontFace<'_> {
UIFontFace {
face_id: self.face_id.clone(),
data: &self.data,
Expand Down
2 changes: 1 addition & 1 deletion crates/grida-canvas-wasm/lib/bin/grida-canvas-wasm.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions crates/grida-canvas-wasm/lib/bin/grida_canvas_wasm.wasm
Git LFS file not shown
2 changes: 1 addition & 1 deletion crates/grida-canvas-wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@grida/canvas-wasm",
"version": "0.90.0-canary.4",
"version": "0.90.0-canary.5",
"private": false,
"description": "WASM bindings for Grida Canvas",
"keywords": [
Expand Down
Loading
Loading