route-graphics 1.0.2 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/dist/RouteGraphics.js +99 -99
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -75,6 +75,9 @@ app.render({
|
|
|
75
75
|
});
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
+
`createAssetBufferManager()` may keep image and video assets as direct source
|
|
79
|
+
URLs when possible, while audio and font assets remain buffer-backed.
|
|
80
|
+
|
|
78
81
|
For complete usage details, go to:
|
|
79
82
|
|
|
80
83
|
- [Getting Started](http://route-graphics.routevn.com/docs/introduction/getting-started/)
|
|
@@ -88,6 +91,10 @@ For complete usage details, go to:
|
|
|
88
91
|
# Run tests
|
|
89
92
|
bun run test
|
|
90
93
|
|
|
94
|
+
# Ensure VT assets are real binaries, not Git LFS pointer files
|
|
95
|
+
git lfs pull
|
|
96
|
+
git lfs checkout
|
|
97
|
+
|
|
91
98
|
# Build the local docs/playground site
|
|
92
99
|
cd playground
|
|
93
100
|
bun install
|
|
@@ -96,6 +103,8 @@ bun run build
|
|
|
96
103
|
|
|
97
104
|
The docs site and playground source live under `playground/`.
|
|
98
105
|
|
|
106
|
+
Visual regression assets under `vt/static/public` and `vt/reference` are stored in Git LFS. If those files are not checked out, VT pages will render blank and browser logs will show image/audio decode errors.
|
|
107
|
+
|
|
99
108
|
## Community
|
|
100
109
|
|
|
101
110
|
Join us on [Discord](https://discord.gg/8J9dyZSu9C) to ask questions, report bugs, and stay up to date.
|