@xuranxys/cli 1.0.1 → 1.0.2
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 +5 -3
- package/config/prettier/.prettierignore +60 -0
- package/{templates/tsdown-template → config/prettier}/.prettierrc.json +11 -19
- package/dist/index.js +4443 -5821
- package/package.json +44 -32
- package/templates/react-template/.vscode/extensions.json +0 -3
- package/templates/react-template/LICENSE +0 -21
- package/templates/react-template/README.md +0 -76
- package/templates/react-template/eslint.config.js +0 -23
- package/templates/react-template/index.html +0 -13
- package/templates/react-template/package.json +0 -29
- package/templates/react-template/public/vite.svg +0 -1
- package/templates/react-template/src/App.css +0 -42
- package/templates/react-template/src/App.tsx +0 -35
- package/templates/react-template/src/assets/react.svg +0 -1
- package/templates/react-template/src/index.css +0 -68
- package/templates/react-template/src/main.tsx +0 -10
- package/templates/react-template/src/vite-env.d.ts +0 -1
- package/templates/react-template/tsconfig.app.json +0 -27
- package/templates/react-template/tsconfig.json +0 -7
- package/templates/react-template/tsconfig.node.json +0 -25
- package/templates/react-template/vite.config.ts +0 -7
- package/templates/tsdown-template/LICENSE +0 -21
- package/templates/tsdown-template/README.md +0 -15
- package/templates/tsdown-template/package.json +0 -19
- package/templates/tsdown-template/pnpm-lock.yaml +0 -569
- package/templates/tsdown-template/src/index.ts +0 -3
- package/templates/tsdown-template/tsconfig.json +0 -33
- package/templates/tsdown-template/tsdown.config.ts +0 -6
- package/templates/vue-template/.vscode/extensions.json +0 -3
- package/templates/vue-template/LICENSE +0 -21
- package/templates/vue-template/README.md +0 -15
- package/templates/vue-template/index.html +0 -13
- package/templates/vue-template/package.json +0 -21
- package/templates/vue-template/public/vite.svg +0 -1
- package/templates/vue-template/src/App.vue +0 -30
- package/templates/vue-template/src/assets/vue.svg +0 -1
- package/templates/vue-template/src/components/HelloWorld.vue +0 -41
- package/templates/vue-template/src/main.ts +0 -5
- package/templates/vue-template/src/style.css +0 -79
- package/templates/vue-template/src/vite-env.d.ts +0 -1
- package/templates/vue-template/tsconfig.app.json +0 -15
- package/templates/vue-template/tsconfig.json +0 -7
- package/templates/vue-template/tsconfig.node.json +0 -25
- package/templates/vue-template/vite.config.ts +0 -7
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# xuran cli
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|

|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
自用`cli`程序
|
|
8
8
|
|
|
9
|
+
> 使用 `bun` 管理
|
|
10
|
+
|
|
9
11
|
## 安装
|
|
10
12
|
|
|
11
13
|
```bash
|
|
@@ -15,7 +17,7 @@ npm install -g @xuranxys/cli
|
|
|
15
17
|
## 使用
|
|
16
18
|
|
|
17
19
|
```bash
|
|
18
|
-
|
|
20
|
+
xuran
|
|
19
21
|
```
|
|
20
22
|
|
|
21
23
|
## 开发
|
|
@@ -26,7 +28,7 @@ create-xuran
|
|
|
26
28
|
|
|
27
29
|
作者:[徐然](https://github.com/xiaoxustudio)
|
|
28
30
|
|
|
29
|
-
联系方式:[xugame@qq.com](emailto://
|
|
31
|
+
联系方式:[xugame@qq.com](emailto://xiaoxustudio@foxmail.com)
|
|
30
32
|
|
|
31
33
|
欢迎提出您宝贵的 **issue**,我们将会处理。
|
|
32
34
|
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Logs
|
|
2
|
+
|
|
3
|
+
logs
|
|
4
|
+
|
|
5
|
+
*.log
|
|
6
|
+
|
|
7
|
+
npm-debug.log*
|
|
8
|
+
|
|
9
|
+
yarn-debug.log*
|
|
10
|
+
|
|
11
|
+
yarn-error.log*
|
|
12
|
+
|
|
13
|
+
pnpm-debug.log*
|
|
14
|
+
|
|
15
|
+
lerna-debug.log*
|
|
16
|
+
|
|
17
|
+
node_modules
|
|
18
|
+
|
|
19
|
+
dist
|
|
20
|
+
|
|
21
|
+
dist-ssr
|
|
22
|
+
|
|
23
|
+
*.local
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# Editor directories and files
|
|
27
|
+
|
|
28
|
+
.vscode/*
|
|
29
|
+
|
|
30
|
+
!.vscode/extensions.json
|
|
31
|
+
|
|
32
|
+
.idea
|
|
33
|
+
|
|
34
|
+
.DS_Store
|
|
35
|
+
|
|
36
|
+
*.suo
|
|
37
|
+
|
|
38
|
+
*.ntvs*
|
|
39
|
+
|
|
40
|
+
*.njsproj
|
|
41
|
+
|
|
42
|
+
*.sln
|
|
43
|
+
|
|
44
|
+
*.sw?
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
cache
|
|
48
|
+
|
|
49
|
+
out
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
pnpm-lock.yaml
|
|
53
|
+
|
|
54
|
+
yarn.lock
|
|
55
|
+
|
|
56
|
+
package-lock.json
|
|
57
|
+
|
|
58
|
+
.gitignore
|
|
59
|
+
|
|
60
|
+
.prettierignore
|
|
@@ -1,19 +1,11 @@
|
|
|
1
|
-
{
|
|
2
|
-
"bracketSpacing": true,
|
|
3
|
-
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
"singleQuote": false,
|
|
13
|
-
|
|
14
|
-
"jsxSingleQuote": false,
|
|
15
|
-
|
|
16
|
-
"useTabs": true,
|
|
17
|
-
|
|
18
|
-
"vueIndentScriptAndStyle": true
|
|
19
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"bracketSpacing": true,
|
|
3
|
+
"endOfLine": "lf",
|
|
4
|
+
"semi": true,
|
|
5
|
+
"tabWidth": 4,
|
|
6
|
+
"trailingComma": "none",
|
|
7
|
+
"singleQuote": false,
|
|
8
|
+
"jsxSingleQuote": false,
|
|
9
|
+
"useTabs": true,
|
|
10
|
+
"vueIndentScriptAndStyle": true
|
|
11
|
+
}
|