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.
Files changed (2) hide show
  1. package/README.md +9 -19
  2. 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/) | Next Generation Frontend Tooling |
48
- | [React](https://react.dev/) | The library for web and native user interfaces |
49
- | [Ant Design](https://ant.design/) | Enterprise-class UI design language |
50
- | [Tailwind CSS](https://tailwindcss.com/) | Rapidly build modern websites without ever leaving your HTML |
51
- | [ESLint](https://eslint.org/) | Find and fix problems in your JavaScript code |
52
- | [Prettier](https://prettier.io/) | An opinionated code formatter |
53
- | [TypeScript](https://www.typescriptlang.org/) | Typed JavaScript at any scale |
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.1.0",
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",