Skip to content

Commit e1aaf61

Browse files
committed
feat(docs): overhaul documentation and branding
This commit includes the following changes:
1 parent b0917e9 commit e1aaf61

98 files changed

Lines changed: 384065 additions & 776 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# @format
2+
13
name: CI/CD Release
24

35
on:
@@ -79,4 +81,4 @@ jobs:
7981
- name: Publish to npm
8082
run: npm publish --access public
8183
env:
82-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # npm token for authentication
84+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # npm token for authentication

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ jobs:
3939
uses: peaceiris/actions-gh-pages@v3
4040
with:
4141
github_token: ${{ secrets.GITHUB_TOKEN }}
42-
publish_dir: ./docs # The directory containing your built documentation
42+
publish_dir: ./build # The directory containing your built documentation
4343
# If you have a custom domain, uncomment and set:
4444
# cname: example.com

CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
## 0.0.3 (2025-09-17)
1+
<!-- @format -->
22

3+
## 0.0.3 (2025-09-17)
34

45
### Features
56

6-
* Implement comprehensive template system and update documentation ([a2de91b](https://github.com/involvex/create-wizard/commit/a2de91b996fff42e1dee902dd73354632d3fb618))
7-
8-
9-
7+
- Implement comprehensive template system and update documentation ([a2de91b](https://github.com/involvex/create-wizard/commit/a2de91b996fff42e1dee902dd73354632d3fb618))

GEMINI.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- @format -->
22

3-
# Project: @involvex/create-universe
3+
# Project: @involvex/create-wizard
44

55
## Project Overview
66

@@ -20,9 +20,9 @@ The `@involvex/create-wizard` project is a command-line interface (CLI) tool des
2020
The project includes several npm scripts for common development tasks:
2121

2222
- **Build**: `npm run build`
23-
- Compiles the `scripts/create-app.js` file into `dist/create-universe.cjs` using `esbuild`, targeting Node.js v22.
23+
- Compiles the `scripts/create-app.js` file into `dist/create-wizard.cjs` using `esbuild`, targeting Node.js v22.
2424
- **Run**: `npm start`
25-
- Executes the bundled CLI tool located at `dist/create-universe.cjs`.
25+
- Executes the bundled CLI tool located at `dist/create-wizard.cjs`.
2626
- **Lint**: `npm run lint`
2727
- Runs ESLint to check for code quality and style issues.
2828
- **Lint Fix**: `npm run lint:fix`

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
## Installation
2121

22-
To use `create-universe`, you need Node.js (version 22.0.0 or higher) installed on your system.
22+
To use `create-wizard`, you need Node.js (version 22.0.0 or higher) installed on your system.
2323

2424
```bash
2525
npm install -g @involvex/create-wizard
@@ -30,17 +30,17 @@ npm install -g @involvex/create-wizard
3030
You can quickly create a new project using `npx` without global installation:
3131

3232
```bash
33-
npx https://github.com/involvex/create-wizard
33+
npx @involvex/create-wizard
3434
```
3535

36-
This command will download and execute the latest version of `@involvex/create-wizard`, guiding you through the project setup process.
36+
This command will execute the latest version of `@involvex/create-wizard` without download, guiding you through the project setup process.
3737

3838
## Usage
3939

4040
To create a new project, run the following command in your terminal:
4141

4242
```bash
43-
create-universe
43+
create-wizard
4444
```
4545

4646
The CLI will then guide you through the following steps:
@@ -70,7 +70,7 @@ The CLI will then guide you through the following steps:
7070
1. Clone the repository:
7171
```bash
7272
git clone https://github.com/involvex/create-wizard/issues
73-
cd create-universe
73+
cd create-wizard
7474
```
7575
2. Install dependencies:
7676
```bash

copyright-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"copyrightContent": "\n/***********************************************\n * Copyright Involvex\n * Copyright 2025()\n ***********************************************/\n",
2+
"copyrightContent": "\n/***********************************************\n * Copyright Involvex\n * Copyright 2025\n ***********************************************/",
33
"fileTypes": {
44
"JavaScript": "js",
55
"JSX": "jsx",

copyright.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/** @format */
2+
3+
module.exports = `
4+
/***********************************************
5+
* Copyright Involvex
6+
* Copyright 2025
7+
***********************************************/
8+
`

0 commit comments

Comments
 (0)