create-antd-app 1.1.0 → 1.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/README.md +9 -19
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -4,16 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
An elegant CLI to bootstrap a modern Ant Design project with Vite, React, Tailwind CSS v4, ESLint v9, Prettier, TypeScript.
|
|
6
6
|
|
|
7
|
-
## Features
|
|
8
|
-
|
|
9
|
-
- ️ **Vite** - Lightning fast cold server start and HMR.
|
|
10
|
-
- **React** - Utilizing the latest React features and improvements.
|
|
11
|
-
- **Ant Design** - A design system for enterprise-level products.
|
|
12
|
-
- **Tailwind CSS v4** - The first CSS-first framework, integrated via `@tailwindcss/vite`.
|
|
13
|
-
- **ESLint v9** - Modern "Flat Config" with optimized linting rules.
|
|
14
|
-
- **Prettier** - Consistent code style with Tailwind CSS class sorting.
|
|
15
|
-
- **TypeScript** - Full type safety and better developer experience.
|
|
16
|
-
|
|
17
7
|
## Quick Start
|
|
18
8
|
|
|
19
9
|
Generate your project in seconds using your favorite package manager:
|
|
@@ -42,15 +32,15 @@ npm run dev
|
|
|
42
32
|
|
|
43
33
|
## Tech Stack
|
|
44
34
|
|
|
45
|
-
| Technology | Description
|
|
46
|
-
| --------------------------------------------- |
|
|
47
|
-
| [Vite](https://vitejs.dev/) |
|
|
48
|
-
| [React](https://react.dev/) |
|
|
49
|
-
| [Ant Design](https://ant.design/) |
|
|
50
|
-
| [Tailwind CSS](https://tailwindcss.com/)
|
|
51
|
-
| [ESLint](https://eslint.org/)
|
|
52
|
-
| [Prettier](https://prettier.io/) |
|
|
53
|
-
| [TypeScript](https://www.typescriptlang.org/) |
|
|
35
|
+
| Technology | Description |
|
|
36
|
+
| --------------------------------------------- | ----------------------------------------------------------------- |
|
|
37
|
+
| [Vite](https://vitejs.dev/) | Lightning fast cold server start and HMR |
|
|
38
|
+
| [React](https://react.dev/) | Utilizing the latest React features and improvements |
|
|
39
|
+
| [Ant Design](https://ant.design/) | A design system for enterprise-level products |
|
|
40
|
+
| [Tailwind CSS v4](https://tailwindcss.com/) | The first CSS-first framework, integrated via `@tailwindcss/vite` |
|
|
41
|
+
| [ESLint v9](https://eslint.org/) | Modern "Flat Config" with optimized linting rules |
|
|
42
|
+
| [Prettier](https://prettier.io/) | Consistent code style with Tailwind CSS class sorting |
|
|
43
|
+
| [TypeScript](https://www.typescriptlang.org/) | Full type safety and better developer experience |
|
|
54
44
|
|
|
55
45
|
## License
|
|
56
46
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-antd-app",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Elegant CLI to bootstrap a modern Ant Design project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
15
|
"dev": "bun run src/index.ts",
|
|
16
|
-
"build": "bun build src/index.ts --outdir=dist --target=node --minify"
|
|
17
|
-
|
|
16
|
+
"build": "bun build src/index.ts --outdir=dist --target=node --minify"
|
|
17
|
+
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@types/fs-extra": "11.0.4",
|
|
20
20
|
"@types/node": "25.0.10",
|