@moluoxixi/create-app 2.0.428 → 2.0.430

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 +3 -3
  2. package/package.json +3 -4
package/README.md CHANGED
@@ -34,9 +34,9 @@ npm create @moluoxixi/app
34
34
 
35
35
  - [ ] 🔄 **Ant Design Vue 模板重构** - 优化 ant-design-vue 模板结构和配置
36
36
  - [ ] 🔄 **Ant Design 模板重构** - 优化 ant-design 模板结构和配置
37
- - [ ] 🔧 **main.ts.ejs 解耦** - 将 Vue 入口文件模板解耦,提高可维护性
38
- - [ ] 🔧 **main.tsx.ejs 解耦** - 将 React 入口文件模板解耦,提高可维护性
39
- - [ ] 🔧 **vite.config.ts.ejs 解耦** - 将 Vite 配置模板解耦,提高可维护性
37
+ - [x] 🔧 **main.ts.ejs 解耦** - 将 Vue 入口文件模板解耦,提高可维护性
38
+ - [x] 🔧 **main.tsx.ejs 解耦** - 将 React 入口文件模板解耦,提高可维护性
39
+ - [x] 🔧 **vite.config.ts.ejs 解耦** - 将 Vite 配置模板解耦,提高可维护性
40
40
 
41
41
  ## 内置依赖
42
42
 
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@moluoxixi/create-app",
3
- "version": "2.0.428",
3
+ "version": "2.0.430",
4
4
  "type": "module",
5
5
  "description": "Create Vue/React projects with atomic layered architecture",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
- "create-mox": "./dist/index.js"
8
+ "create-app": "./dist/index.js"
9
9
  },
10
10
  "files": [
11
- "!template/**/node_modules/*",
11
+ "!template/**/node_modules/.bin/*",
12
12
  "LICENSE.txt",
13
13
  "README.md",
14
14
  "dist",
@@ -72,7 +72,6 @@
72
72
  "type-check": "tsc --noEmit",
73
73
  "lint:eslint": "eslint . --fix",
74
74
  "submodule:update": "git submodule update --init --recursive --remote",
75
- "postinstall": "pnpm submodule:update",
76
75
  "lint-staged": "lint-staged",
77
76
  "commit": "git add . && git-cz",
78
77
  "version:patch": "pnpm version patch --no-git-tag-version",