uc-dev 1.0.0-beta.0

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 (31) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +79 -0
  3. package/out/cli.js +8162 -0
  4. package/out/lib/processes/templates/js.tpt.code +7 -0
  5. package/out/lib/processes/templates/js.tpt.designer +101 -0
  6. package/out/lib/processes/templates/js.tpt.style +36 -0
  7. package/out/lib/processes/templates/js.uc.code +15 -0
  8. package/out/lib/processes/templates/js.uc.designer +103 -0
  9. package/out/lib/processes/templates/js.uc.style +5 -0
  10. package/out/lib/processes/templates/t.resources +26 -0
  11. package/out/lib/processes/templates/ts.resources +55 -0
  12. package/out/lib/processes/templates/ts.tpt.code +7 -0
  13. package/out/lib/processes/templates/ts.tpt.designer +77 -0
  14. package/out/lib/processes/templates/ts.tpt.dynamic +12 -0
  15. package/out/lib/processes/templates/ts.tpt.style +36 -0
  16. package/out/lib/processes/templates/ts.uc.code +10 -0
  17. package/out/lib/processes/templates/ts.uc.designer +89 -0
  18. package/out/lib/processes/templates/ts.uc.dynamic +12 -0
  19. package/out/lib/processes/templates/ts.uc.dynamicByHtml +16 -0
  20. package/out/lib/processes/templates/ts.uc.style +5 -0
  21. package/out/utils/inquiry/templates/.vscode/json.settings +17 -0
  22. package/out/utils/inquiry/templates/electron/html.renderer +11 -0
  23. package/out/utils/inquiry/templates/electron/sample1/form.uc.html.tp +54 -0
  24. package/out/utils/inquiry/templates/electron/sample1/form.uc.scss.tp +95 -0
  25. package/out/utils/inquiry/templates/electron/ts.main +44 -0
  26. package/out/utils/inquiry/templates/electron/ts.preload +3 -0
  27. package/out/utils/inquiry/templates/electron/ts.renderer +5 -0
  28. package/out/utils/inquiry/templates/electron/ts.resx +50 -0
  29. package/out/utils/inquiry/templates/js.ucconfig +108 -0
  30. package/out/utils/inquiry/templates/typescript/json.tsconfig +39 -0
  31. package/package.json +36 -0
package/README.md ADDED
@@ -0,0 +1,79 @@
1
+ :Shree Ganeshay Namah:<br />
2
+ # uc-dev
3
+
4
+
5
+ > CLI toolkit for UC project development
6
+
7
+ `uc-dev` is a command-line utility that helps manage UC-based projects by automating setup and designer build workflows.
8
+
9
+ ⚠ Status: **Beta**
10
+
11
+ ---
12
+
13
+ ## Installation
14
+
15
+ ### Global install (recommended)
16
+
17
+ ```bash
18
+ npm install -g uc-dev
19
+ ```
20
+ ### Local install
21
+ ```bash
22
+ npm install uc-dev
23
+ ```
24
+ Commands
25
+ build
26
+
27
+ Generate designer files for the project.
28
+ ```bash
29
+ uc-dev build
30
+ ```
31
+ - this generate designer for all usercontrols and templates.
32
+ - also generate a single resource file that hold project's resurces (all used contents in string format except source code) that make easy for bundling.
33
+ - each resource will assigned uniqueid to access.
34
+
35
+ Use this command whenever designer files change.
36
+
37
+ ---
38
+ `setup`<br>
39
+ Initializes a project for development.
40
+ ```bash
41
+ uc-dev setup
42
+ ```
43
+ What it does:
44
+ - Installs required dependencies (also done before build)
45
+ - Creates necessary directories
46
+ - Configures project paths
47
+ - Prepares development environment
48
+ - Run once when starting a new project.
49
+
50
+ ---
51
+
52
+ Typical Workflow
53
+ ```bash
54
+ uc-dev setup
55
+ uc-dev build
56
+ ```
57
+ ---
58
+ Development Notes
59
+
60
+ - Commands are designed to be safe to re-run
61
+ - Paths are resolved relative to the project
62
+ - No manual configuration required after setup
63
+
64
+ ---
65
+
66
+ **LICENSE** <br>
67
+ MIT
68
+
69
+ **FEEDBACK** <br>
70
+ Report issues or suggestions to improve the CLI workflow.
71
+
72
+ **Github** <br>
73
+ [https://github.com/pratik2201/uc-dev.git](https://github.com/pratik2201/uc-dev.git)
74
+
75
+
76
+ **Youtube** <br>
77
+ As Soon As
78
+
79
+ Happy building 🚀