Skip to content

Commit

Permalink
add repository info into npm package and fix examples url link in the…
Browse files Browse the repository at this point in the history
… readme
  • Loading branch information
AlessioCoser committed Mar 30, 2024
1 parent 75c09f2 commit 4d25fd7
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/async-counter-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"typescript": "^4.9.3"
},
"dependencies": {
"doom-reactive-state": "^1.0.2"
"doom-reactive-state": "^1.0.3"
}
}
2 changes: 1 addition & 1 deletion examples/cdn-package/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://github.com/AlessioCoser/doom-reactive-state/releases/download/1.0.2/doom-reactive-state.global.js"></script>
<script src="https://github.com/AlessioCoser/doom-reactive-state/releases/download/1.0.3/doom-reactive-state.global.js"></script>
</head>
<body>
<script type="application/javascript">
Expand Down
2 changes: 1 addition & 1 deletion examples/reactive-state-nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"doom-reactive-state": "^1.0.2"
"doom-reactive-state": "^1.0.3"
}
}
2 changes: 1 addition & 1 deletion examples/simple-counter-javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"typescript": "^4.9.3"
},
"dependencies": {
"doom-reactive-state": "^1.0.2"
"doom-reactive-state": "^1.0.3"
}
}
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
},
"author": "Alessio Coser",
"license": "MIT",
"homepage": "https://github.com/AlessioCoser/doom-reactive-state",
"repository": {
"url": "https://github.com/AlessioCoser/doom-reactive-state"
},
"devDependencies": {
"@types/jsdom": "^21.1.0",
"@vitest/coverage-v8": "^1.4.0",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Super simple reactive state management with fine-grained reactive DOM elements.
7. HtmlElement wrappers to easily use the standard html elements as reactive components

## Examples
You can find some examples here: [./examples](./examples)
You can find some examples here: [Examples](https://github.com/AlessioCoser/doom-reactive-state/tree/master/examples)

## Getting Started

Expand Down

0 comments on commit 4d25fd7

Please sign in to comment.