create-tengits-app 1.1.4 → 1.1.5
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/.gitignore +28 -0
- package/package.json +3 -2
package/.gitignore
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
2
|
+
|
|
3
|
+
# dependencies
|
|
4
|
+
**/node_modules
|
|
5
|
+
# roadhog-api-doc ignore
|
|
6
|
+
/src/utils/request-temp.js
|
|
7
|
+
_roadhog-api-doc
|
|
8
|
+
|
|
9
|
+
# production
|
|
10
|
+
**/dist*
|
|
11
|
+
**/build*
|
|
12
|
+
|
|
13
|
+
# misc
|
|
14
|
+
.DS_Store
|
|
15
|
+
npm-debug.log*
|
|
16
|
+
yarn-error.log
|
|
17
|
+
|
|
18
|
+
/coverage
|
|
19
|
+
.idea
|
|
20
|
+
yarn.lock
|
|
21
|
+
package-lock.json
|
|
22
|
+
*bak
|
|
23
|
+
|
|
24
|
+
# visual studio code
|
|
25
|
+
.history
|
|
26
|
+
dist.rar
|
|
27
|
+
dist.zip
|
|
28
|
+
/.claude
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-tengits-app",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "🚀 快速创建基于 React + Rsbuild + TypeScript + Tailwind CSS + Antd 的现代前端项目脚手架",
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "MIT",
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"*.yaml",
|
|
35
35
|
"*.md",
|
|
36
36
|
"*.mjs",
|
|
37
|
-
"*.d.ts"
|
|
37
|
+
"*.d.ts",
|
|
38
|
+
".gitignore"
|
|
38
39
|
],
|
|
39
40
|
"scripts": {
|
|
40
41
|
"start": "pnpm --filter main start",
|