@moluoxixi/create-app 2.0.416 → 2.0.418

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moluoxixi/create-app",
3
- "version": "2.0.416",
3
+ "version": "2.0.418",
4
4
  "type": "module",
5
5
  "description": "Create Vue/React projects with atomic layered architecture",
6
6
  "main": "dist/index.js",
@@ -11,7 +11,8 @@
11
11
  "LICENSE.txt",
12
12
  "README.md",
13
13
  "dist",
14
- "templates"
14
+ "templates",
15
+ "templates/**/.gitignore"
15
16
  ],
16
17
  "lint-staged": {
17
18
  "*.{js,jsx,ts,tsx}": [
@@ -0,0 +1,42 @@
1
+ # user
2
+ typings
3
+
4
+ # Logs
5
+ logs
6
+ *.log
7
+ npm-debug.log*
8
+ yarn-debug.log*
9
+ yarn-error.log*
10
+ pnpm-debug.log*
11
+ lerna-debug.log*
12
+
13
+ node_modules
14
+ dist
15
+ *.local
16
+ test
17
+ test.zip
18
+ .DS_Store
19
+
20
+ # Editor directories and files
21
+ .idea
22
+ *.suo
23
+ *.ntvs*
24
+ *.njsproj
25
+ *.sln
26
+ *.sw?
27
+
28
+ # 系统文件
29
+ Thumbs.db
30
+
31
+ # 测试覆盖率
32
+ coverage
33
+
34
+ # 环境变量
35
+ .env.local
36
+ .env.*.local
37
+
38
+ # 缓存
39
+ .cache
40
+ .temp
41
+ *.tsbuildinfo
42
+