Skip to content

Commit

Permalink
0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jschwind committed May 30, 2024
1 parent 9cb414d commit 8f965c5
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Replace `path/to/avalynx-ref.js` with the actual path to the file in your projec
AvalynxRef is also available via [jsDelivr](https://www.jsdelivr.com/). You can include it in your project like this:

```html
<script src="https://cdn.jsdelivr.net/npm/avalynx-ref@0.0.2/dist/js/avalynx-ref.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/avalynx-ref@0.0.3/dist/js/avalynx-ref.min.js"></script>
```

## Installation via NPM ([Link](https://www.npmjs.com/package/avalynx-ref))
Expand Down
2 changes: 1 addition & 1 deletion dist/js/avalynx-ref.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* A Ref implementation for updating elements with a value like React's Ref or Vue's Ref.
*
* @version 0.0.2
* @version 0.0.3
* @license MIT
* @author https://github.com/avalynx/avalynx-ref/graphs/contributors
* @website https://github.com/avalynx/
Expand Down
2 changes: 1 addition & 1 deletion dist/js/avalynx-ref.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* A Ref implementation for updating elements with a value like React's Ref or Vue's Ref.
*
* @version 0.0.2
* @version 0.0.3
* @license MIT
* @author https://github.com/avalynx/avalynx-ref/graphs/contributors
* @website https://github.com/avalynx/
Expand Down
4 changes: 2 additions & 2 deletions examples/random-values.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9/build/styles/stackoverflow-light.min.css" id="hljsTheme">
<script>hljs.highlightAll();</script>

<!-- AvalynxRef 0.0.2 -->
<script src="https://cdn.jsdelivr.net/npm/avalynx-ref@0.0.2/dist/js/avalynx-ref.min.js"></script>
<!-- AvalynxRef 0.0.3 -->
<script src="https://cdn.jsdelivr.net/npm/avalynx-ref@0.0.3/dist/js/avalynx-ref.min.js"></script>

<!-- Example helper -->
<link href="./css/helper.css" rel="stylesheet">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "avalynx-ref",
"title": "AvalynxRef",
"description": "AvalynxRef is a Ref implementation for updating elements with a value like React's Ref or Vue's Ref.",
"version": "0.0.2",
"version": "0.0.3",
"license": "MIT",
"main": "dist/js/avalynx-ref.js",
"module": "dist/js/avalynx-ref.esm.js",
Expand Down
2 changes: 1 addition & 1 deletion src/js/avalynx-ref.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* A Ref implementation for updating elements with a value like React's Ref or Vue's Ref.
*
* @version 0.0.2
* @version 0.0.3
* @license MIT
* @author https://github.com/avalynx/avalynx-ref/graphs/contributors
* @website https://github.com/avalynx/
Expand Down
2 changes: 1 addition & 1 deletion src/js/avalynx-ref.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* A Ref implementation for updating elements with a value like React's Ref or Vue's Ref.
*
* @version 0.0.2
* @version 0.0.3
* @license MIT
* @author https://github.com/avalynx/avalynx-ref/graphs/contributors
* @website https://github.com/avalynx/
Expand Down

0 comments on commit 8f965c5

Please sign in to comment.