uniqueui-cli 0.1.1 → 0.1.3
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/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -17,6 +17,6 @@ program
|
|
|
17
17
|
.command("add")
|
|
18
18
|
.description("Add a component to your project")
|
|
19
19
|
.argument("<component>", "the component to add")
|
|
20
|
-
.option("--url <url>", "the base URL of the registry", "https://raw.githubusercontent.com/
|
|
20
|
+
.option("--url <url>", "the base URL of the registry", "https://raw.githubusercontent.com/pras75299/uniqueui/main")
|
|
21
21
|
.action(add_1.add);
|
|
22
22
|
program.parse();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uniqueui-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "CLI to add beautiful animated UI components from UniqueUI to your React project",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"commander": "^11.1.0",
|
|
47
47
|
"chalk": "^4.1.2",
|
|
48
|
+
"fs-extra": "^11.2.0",
|
|
48
49
|
"ts-morph": "^21.0.1",
|
|
49
50
|
"zod": "^3.22.4",
|
|
50
51
|
"node-fetch": "^3.3.2",
|
|
@@ -55,7 +56,6 @@
|
|
|
55
56
|
"@types/node": "^20.10.0",
|
|
56
57
|
"typescript": "^5.3.3",
|
|
57
58
|
"@types/prompts": "^2.4.9",
|
|
58
|
-
"@types/fs-extra": "^11.0.4"
|
|
59
|
-
"fs-extra": "^11.2.0"
|
|
59
|
+
"@types/fs-extra": "^11.0.4"
|
|
60
60
|
}
|
|
61
61
|
}
|