@zyrab/domo 1.0.1 → 1.0.2

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 +8 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,6 +8,13 @@ It simplifies native APIs with a chainable, intuitive interface.
8
8
  Originally built for personal use, it's growing into a lightweight UI toolkit with a router, planned components, and scoped styles.
9
9
  No dependencies. No build step. Just clean, direct DOM manipulation.
10
10
 
11
+ ### Size
12
+
13
+ - Minified: 5120 bytes
14
+ - Gzipped: 2054 bytes
15
+
16
+ Domo is highly optimized for performance, ensuring fast load times even in constrained environments.
17
+
11
18
  ---
12
19
 
13
20
  ## Features
@@ -35,7 +42,7 @@ npm install @zyrab/domo
35
42
  ## Usage
36
43
 
37
44
  ```js
38
- import Domo from " @zyrab/domo";
45
+ import { Domo } from " @zyrab/domo";
39
46
 
40
47
  const btn = Domo("button")
41
48
  .id("submit-btn")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyrab/domo",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Minimalist DOM builder and chaining-friendly micro-framework with router support.",
5
5
  "main": "index.js",
6
6
  "type": "module",