Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dev
node_modules
node_modules
deno.lock
4 changes: 3 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
dev
docs
.gitignore
.gitignore
deno.json
deno.lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@ function Canvas() {

## License

hstd is [WTFPL licensed](LICENSE).
hstd is [MIT licensed](LICENSE).
4 changes: 2 additions & 2 deletions docs/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default function() {
</div>

<div ${{ [css.margin]: "40px 0 0" }}>
Hstd = HyperStandard is a minimal JavaScript library to build simple, reactive, extensible web interface.
<b>hstd</b> = HyperStandard is a minimal JavaScript library to build simple, reactive, extensible web interface.
</div>

<div ${{ [css.margin]: "20px 0 0" }}>
Expand All @@ -131,7 +131,7 @@ export default function() {
<div ${{ [css.margin]: "60px 0" }}>
<h2 ${{ [css.fontFamily]: 'Courier New' }}>License</h2>

Hstd is ${Link("https://www.wtfpl.net", "WTFPL licensed")}.
hstd is ${Link("https://opensource.org/license/mit", "MIT licensed")}.
</div>

`;
Expand Down
2 changes: 1 addition & 1 deletion docs/mod.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hstd",
"version": "0.1.1",
"version": "0.1.7",
"description": "simple library to build reactive, extensive, reusable web interface.",
"type": "module",
"main": "./src/mod.js",
Expand Down
Loading