Skip to content

Commit 159b74e

Browse files
Merge pull request #538 from gridaco/canary
Grida Canvas - Curve Decorations
2 parents 7f3d892 + 9ce0e5f commit 159b74e

File tree

55 files changed

+3229
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+3229
-67
lines changed

.oxfmtrc.jsonc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
22
"$schema": "./node_modules/oxfmt/configuration_schema.json",
33
"ignorePatterns": [],
4-
// custom below, zero-config above.
5-
// we're migrating from prettier to oxfmt, below will be removed once complete.
64
"printWidth": 80,
75
"trailingComma": "es5",
86
"experimentalSortPackageJson": {

.prettierrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

AGENTS.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,19 @@ Currently, we have below features / modules.
1414

1515
## Project Structure
1616

17-
- [docs](./docs) - the docs directory
18-
- [format](./format) - grida file formats & schemas
19-
- [editor](./editor) - the editor directory
20-
- [crates](./crates) - the rust crates directory
21-
- [packages](./packages) - shared packages
22-
- [desktop](./desktop) - the electron desktop app
23-
- [supabase](./supabase) - the supabase project
24-
- [apps](./apps) - micro sites for Grida
25-
- [library](./library) - hosted library workers
26-
- [jobs](./jobs) - hosted jobs
27-
- [.legacy](./legacy) - will be removed (fully ignore this directory)
17+
| directory | README | AGENTS | notes |
18+
| ---------------------- | -------------------------------------------- | -------------------------------------------- | --------------------------------------------- |
19+
| [docs](./docs) | - | [`docs/AGENTS.md`](./docs/AGENTS.md) | the docs directory |
20+
| [format](./format) | [`format/README.md`](./format/README.md) | [`format/AGENTS.md`](./format/AGENTS.md) | grida file formats & schemas |
21+
| [editor](./editor) | - | [`editor/AGENTS.md`](./editor/AGENTS.md) | the editor directory |
22+
| [crates](./crates) | - | - | the rust crates directory |
23+
| [packages](./packages) | - | - | shared packages |
24+
| [desktop](./desktop) | [`desktop/README.md`](./desktop/README.md) | - | the electron desktop app |
25+
| [supabase](./supabase) | [`supabase/README.md`](./supabase/README.md) | [`supabase/AGENTS.md`](./supabase/AGENTS.md) | the supabase project |
26+
| [apps](./apps) | - | - | micro sites for Grida |
27+
| [library](./library) | [`library/README.md`](./library/README.md) | - | hosted library workers |
28+
| [jobs](./jobs) | [`jobs/README.md`](./jobs/README.md) | - | hosted jobs |
29+
| [.legacy](./.legacy) | - | - | will be removed (fully ignore this directory) |
2830

2931
## Languages, Frameworks, Tools, Infrastructures
3032

CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
AGENTS.md

crates/grida-canvas-fonts/src/parse_ui.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ impl UIFontFaceOwned {
5252
}
5353

5454
/// Convert to zero-copy version for internal processing
55-
pub fn as_borrowed(&self) -> UIFontFace {
55+
pub fn as_borrowed(&self) -> UIFontFace<'_> {
5656
UIFontFace {
5757
face_id: self.face_id.clone(),
5858
data: &self.data,

crates/grida-canvas-wasm/lib/bin/grida-canvas-wasm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:dfacee3fc7189fd9e9ef8c69e97c71839200eb0fc53101a4186a3e085fc775bb
3-
size 12882632
2+
oid sha256:4d2b2e1ea6a31e345188e59b06297e8cd04ac2da172f4424b28c97698db5a272
3+
size 12843871

crates/grida-canvas-wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@grida/canvas-wasm",
3-
"version": "0.90.0-canary.4",
3+
"version": "0.90.0-canary.5",
44
"private": false,
55
"description": "WASM bindings for Grida Canvas",
66
"keywords": [

0 commit comments

Comments
 (0)