tagu-tagu 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,13 +1,13 @@
1
- # tag-tag
1
+ # tagu-tagu
2
2
 
3
3
  A lightweight helper for vanilla `HTMLElement`. No config, no jsx — only clean javascript.
4
4
 
5
- ## `tag-tag` is
5
+ ## `tagu-tagu` is
6
6
 
7
7
  just a helper for `HTMLElement`:
8
8
 
9
9
  ```javascript
10
- import {button} from "tag-tag";
10
+ import {button} from "tagu-tagu";
11
11
 
12
12
  const myButton = button("Click Me!"); // `HTMLButtonElement`
13
13
  document.body.appendChild(myButton);
@@ -16,7 +16,7 @@ document.body.appendChild(myButton);
16
16
  with reactivity!
17
17
 
18
18
  ```javascript
19
- import {button, span, Modify, useState} from "tag-tag";
19
+ import {button, span, Modify, useState} from "tagu-tagu";
20
20
 
21
21
  const count = useState(4);
22
22
 
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "tagu-tagu",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A lightweight helper for vanilla `HTMLElement`.",
5
5
  "keywords": [
6
6
  "vanilla"
7
7
  ],
8
- "homepage": "https://github.com/DoTheSimplest/tag-tag#readme",
8
+ "homepage": "https://github.com/DoTheSimplest/tagu-tagu#readme",
9
9
  "bugs": {
10
- "url": "https://github.com/DoTheSimplest/tag-tag/issues"
10
+ "url": "https://github.com/DoTheSimplest/tagu-tagu/issues"
11
11
  },
12
12
  "repository": {
13
13
  "type": "git",
14
- "url": "git+https://github.com/DoTheSimplest/tag-tag.git"
14
+ "url": "git+https://github.com/DoTheSimplest/tagu-tagu.git"
15
15
  },
16
16
  "author": "DoTheSimmplest",
17
17
  "type": "module",