Skip to content

Commit 8f965c5

Browse files
committed
0.0.3
1 parent 9cb414d commit 8f965c5

7 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Replace `path/to/avalynx-ref.js` with the actual path to the file in your projec
3131
AvalynxRef is also available via [jsDelivr](https://www.jsdelivr.com/). You can include it in your project like this:
3232

3333
```html
34-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/js/avalynx-ref.min.js"></script>
34+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/js/avalynx-ref.min.js"></script>
3535
```
3636

3737
## Installation via NPM ([Link](https://www.npmjs.com/package/avalynx-ref))

dist/js/avalynx-ref.esm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* A Ref implementation for updating elements with a value like React's Ref or Vue's Ref.
55
*
6-
* @version 0.0.2
6+
* @version 0.0.3
77
* @license MIT
88
* @author https://github.com/avalynx/avalynx-ref/graphs/contributors
99
* @website https://github.com/avalynx/

dist/js/avalynx-ref.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* A Ref implementation for updating elements with a value like React's Ref or Vue's Ref.
55
*
6-
* @version 0.0.2
6+
* @version 0.0.3
77
* @license MIT
88
* @author https://github.com/avalynx/avalynx-ref/graphs/contributors
99
* @website https://github.com/avalynx/

examples/random-values.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/stackoverflow-light.min.css" id="hljsTheme">
1717
<script>hljs.highlightAll();</script>
1818

19-
<!-- AvalynxRef 0.0.2 -->
20-
<script src="https://cdn.jsdelivr.net/npm/[email protected].2/dist/js/avalynx-ref.min.js"></script>
19+
<!-- AvalynxRef 0.0.3 -->
20+
<script src="https://cdn.jsdelivr.net/npm/[email protected].3/dist/js/avalynx-ref.min.js"></script>
2121

2222
<!-- Example helper -->
2323
<link href="./css/helper.css" rel="stylesheet">

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "avalynx-ref",
33
"title": "AvalynxRef",
44
"description": "AvalynxRef is a Ref implementation for updating elements with a value like React's Ref or Vue's Ref.",
5-
"version": "0.0.2",
5+
"version": "0.0.3",
66
"license": "MIT",
77
"main": "dist/js/avalynx-ref.js",
88
"module": "dist/js/avalynx-ref.esm.js",

src/js/avalynx-ref.esm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* A Ref implementation for updating elements with a value like React's Ref or Vue's Ref.
55
*
6-
* @version 0.0.2
6+
* @version 0.0.3
77
* @license MIT
88
* @author https://github.com/avalynx/avalynx-ref/graphs/contributors
99
* @website https://github.com/avalynx/

src/js/avalynx-ref.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* A Ref implementation for updating elements with a value like React's Ref or Vue's Ref.
55
*
6-
* @version 0.0.2
6+
* @version 0.0.3
77
* @license MIT
88
* @author https://github.com/avalynx/avalynx-ref/graphs/contributors
99
* @website https://github.com/avalynx/

0 commit comments

Comments
 (0)