route-graphics 0.0.6 → 0.0.7
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 +6 -2
- package/dist/RouteGraphics.js +106 -106
- package/package.json +13 -4
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ import RouteGraphics, {
|
|
|
28
28
|
// Load assets
|
|
29
29
|
const assets = {
|
|
30
30
|
"file:bg1": {
|
|
31
|
-
url: "/public/
|
|
31
|
+
url: "/public/slider-bar.png",
|
|
32
32
|
type: "image/png",
|
|
33
33
|
},
|
|
34
34
|
"file:circle-red": {
|
|
@@ -80,7 +80,7 @@ app.render({
|
|
|
80
80
|
y: 100,
|
|
81
81
|
}
|
|
82
82
|
],
|
|
83
|
-
|
|
83
|
+
animations: []
|
|
84
84
|
});
|
|
85
85
|
```
|
|
86
86
|
|
|
@@ -109,6 +109,10 @@ bun run lint
|
|
|
109
109
|
# to test it
|
|
110
110
|
bun run test
|
|
111
111
|
|
|
112
|
+
# or
|
|
113
|
+
bun run test:coverage
|
|
114
|
+
|
|
115
|
+
|
|
112
116
|
```
|
|
113
117
|
|
|
114
118
|
|