@libria/scaffold 0.1.2 → 0.2.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.
- package/.clean-publish.hash +1 -1
- package/README.md +46 -0
- package/package.json +1 -1
package/.clean-publish.hash
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
67292df359f00038fa640827b2a95a50df39ff84b0d73ed79def8ee3c1a802ce
|
package/README.md
CHANGED
|
@@ -93,6 +93,52 @@ A modern TypeScript library template with:
|
|
|
93
93
|
- Package.json with proper exports
|
|
94
94
|
- Comprehensive README and LICENSE
|
|
95
95
|
|
|
96
|
+
### angular
|
|
97
|
+
|
|
98
|
+
A complete Angular application template using the official Angular CLI. Supports:
|
|
99
|
+
|
|
100
|
+
- Angular versions: Latest, 20, 19, 18, 17, 16
|
|
101
|
+
- Stylesheet formats: SCSS, CSS, Sass, Less
|
|
102
|
+
- Optional routing module
|
|
103
|
+
- Optional Server-Side Rendering (SSR)
|
|
104
|
+
- Git initialization (optional)
|
|
105
|
+
- Dependency installation (optional)
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
lb-scaffold create -t angular -n my-angular-app
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
**Interactive prompts:**
|
|
112
|
+
- Angular version selection
|
|
113
|
+
- Stylesheet format (SCSS recommended)
|
|
114
|
+
- Add routing module?
|
|
115
|
+
- Enable SSR?
|
|
116
|
+
- Skip git initialization?
|
|
117
|
+
- Skip npm install?
|
|
118
|
+
|
|
119
|
+
### nestjs
|
|
120
|
+
|
|
121
|
+
A production-ready NestJS backend application using the official NestJS CLI. Includes:
|
|
122
|
+
|
|
123
|
+
- TypeScript with strict mode (optional)
|
|
124
|
+
- Package manager choice: npm, Yarn, or pnpm
|
|
125
|
+
- Controller, Service, and Module structure
|
|
126
|
+
- Unit test setup with Jest
|
|
127
|
+
- E2E test configuration
|
|
128
|
+
- Git initialization (optional)
|
|
129
|
+
- Dependency installation (optional)
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
lb-scaffold create -t nestjs -n my-nest-api
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
**Interactive prompts:**
|
|
136
|
+
- Package manager selection (npm, Yarn, pnpm)
|
|
137
|
+
- Enable strict TypeScript mode?
|
|
138
|
+
- Skip git initialization?
|
|
139
|
+
- Skip package installation?
|
|
140
|
+
|
|
141
|
+
|
|
96
142
|
## Configuration
|
|
97
143
|
|
|
98
144
|
The scaffold CLI supports a configuration file (`.lbscaffold`) that allows you to register custom plugin directories. This enables you to use your own templates alongside the built-in ones.
|
package/package.json
CHANGED