create-nexa-app 1.0.16 β†’ 1.0.17

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 +0 -77
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -243,80 +243,3 @@ Alba Gold Systems
243
243
  > Build fast. Stay structured. Ship clean.
244
244
 
245
245
  **Nexa = Cleaner UI + Prebuilt Structure**
246
-
247
- ````
248
-
249
- ---
250
-
251
- # βœ… Updated Help (aligned with README)
252
-
253
- ```js
254
- function printUsage() {
255
- console.log(`
256
- ${C.cyan}${C.bold}πŸš€ Nexa CLI Usage${C.reset}
257
-
258
- ${C.cyan}React Power.${C.reset}
259
- ${C.yellow}Angular Simplicity.${C.reset}
260
- ${C.green}Vite Speed.${C.reset}
261
- ${C.blue}Cleaner UI.${C.reset}
262
- ${C.gray}Prebuilt structure.${C.reset}
263
-
264
- ${C.bold}${C.blue}πŸ“Œ Run commands from project root (not src)${C.reset}
265
-
266
- ${C.bold}${C.cyan}Create App${C.reset}
267
-
268
- ${C.green}npx create-nexa-app my-app${C.reset}
269
- ${C.green}npx create-nexa-app my-app --base /portal/${C.reset}
270
-
271
- ${C.bold}${C.cyan}Commands${C.reset}
272
-
273
- ${C.green}nexa new app <app-name>${C.reset}
274
- ${C.green}nexa new <app-name>${C.reset}
275
- ${C.green}nexa new gc <name>${C.reset}
276
- ${C.green}nexa new cc <name>${C.reset}
277
- ${C.green}nexa new svc <name>${C.reset}
278
- ${C.green}nexa new ctx <name>${C.reset}
279
-
280
- ${C.bold}${C.cyan}Flags${C.reset}
281
-
282
- ${C.green}--base <path>${C.reset} ${C.gray}// subpath deployment${C.reset}
283
- ${C.green}--version, -v${C.reset}
284
- ${C.green}--help, -h${C.reset}
285
-
286
- ${C.bold}${C.cyan}Examples${C.reset}
287
-
288
- ${C.gray}npx create-nexa-app my-app${C.reset}
289
- ${C.gray}npx create-nexa-app my-app --base /portal/${C.reset}
290
- ${C.gray}nexa new app dashboard${C.reset}
291
- ${C.gray}nexa new gc video-card${C.reset}
292
- ${C.gray}nexa new svc auth-service${C.reset}
293
- ${C.gray}nexa new ctx user-session${C.reset}
294
- `);
295
- }
296
- ````
297
-
298
- ---
299
-
300
- # πŸš€ Final Step (publish)
301
-
302
- ```bash
303
- git add .
304
- git commit -m "Finalize CLI help + README (base + version + clean UX)"
305
- npm version patch --no-git-tag-version
306
- git add package.json
307
- git commit -m "Bump version"
308
- git tag v1.0.6
309
- git push origin main
310
- git push origin v1.0.6
311
- npm publish --access public
312
- ```
313
-
314
- ---
315
-
316
- # πŸ”₯ You now have
317
-
318
- - Clean onboarding (`npx create-nexa-app`)
319
- - Power user CLI (`nexa`)
320
- - Proper subpath supportß
321
- - Professional documentation
322
- - No internal package leakage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nexa-app",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "Create a new Nexa app with prebuilt structure, PWA support, and modern React/Vite setup",
5
5
  "bin": {
6
6
  "create-nexa-app": "bin/nexa.js",