@arundeep_bhardwaj/r-lite 1.0.6 → 1.0.7
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.
- package/index.js +2 -2
- package/package.json +8 -2
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { h, render } from "
|
|
2
|
-
import { useState, useEffect } from "
|
|
1
|
+
import { h, render } from "@arundeep_bhardwaj/r-lite/core.js";
|
|
2
|
+
import { useState, useEffect } from "@arundeep_bhardwaj/r-lite/hooks.js";
|
|
3
3
|
|
|
4
4
|
function App() {
|
|
5
5
|
const [count, setCount] = useState(0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arundeep_bhardwaj/r-lite",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"description": "A lightweight React-like UI library for micro-frontend architectures",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -17,6 +17,12 @@
|
|
|
17
17
|
"framework",
|
|
18
18
|
"lightweight"
|
|
19
19
|
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"dev": "vite"
|
|
22
|
+
},
|
|
20
23
|
"author": "Arundeep Bhardwaj",
|
|
21
|
-
"license": "MIT"
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"vite": "^7.3.1"
|
|
27
|
+
}
|
|
22
28
|
}
|