@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.
Files changed (45) hide show
  1. package/README.md +5 -3
  2. package/config/prettier/.prettierignore +60 -0
  3. package/{templates/tsdown-template → config/prettier}/.prettierrc.json +11 -19
  4. package/dist/index.js +4443 -5821
  5. package/package.json +44 -32
  6. package/templates/react-template/.vscode/extensions.json +0 -3
  7. package/templates/react-template/LICENSE +0 -21
  8. package/templates/react-template/README.md +0 -76
  9. package/templates/react-template/eslint.config.js +0 -23
  10. package/templates/react-template/index.html +0 -13
  11. package/templates/react-template/package.json +0 -29
  12. package/templates/react-template/public/vite.svg +0 -1
  13. package/templates/react-template/src/App.css +0 -42
  14. package/templates/react-template/src/App.tsx +0 -35
  15. package/templates/react-template/src/assets/react.svg +0 -1
  16. package/templates/react-template/src/index.css +0 -68
  17. package/templates/react-template/src/main.tsx +0 -10
  18. package/templates/react-template/src/vite-env.d.ts +0 -1
  19. package/templates/react-template/tsconfig.app.json +0 -27
  20. package/templates/react-template/tsconfig.json +0 -7
  21. package/templates/react-template/tsconfig.node.json +0 -25
  22. package/templates/react-template/vite.config.ts +0 -7
  23. package/templates/tsdown-template/LICENSE +0 -21
  24. package/templates/tsdown-template/README.md +0 -15
  25. package/templates/tsdown-template/package.json +0 -19
  26. package/templates/tsdown-template/pnpm-lock.yaml +0 -569
  27. package/templates/tsdown-template/src/index.ts +0 -3
  28. package/templates/tsdown-template/tsconfig.json +0 -33
  29. package/templates/tsdown-template/tsdown.config.ts +0 -6
  30. package/templates/vue-template/.vscode/extensions.json +0 -3
  31. package/templates/vue-template/LICENSE +0 -21
  32. package/templates/vue-template/README.md +0 -15
  33. package/templates/vue-template/index.html +0 -13
  34. package/templates/vue-template/package.json +0 -21
  35. package/templates/vue-template/public/vite.svg +0 -1
  36. package/templates/vue-template/src/App.vue +0 -30
  37. package/templates/vue-template/src/assets/vue.svg +0 -1
  38. package/templates/vue-template/src/components/HelloWorld.vue +0 -41
  39. package/templates/vue-template/src/main.ts +0 -5
  40. package/templates/vue-template/src/style.css +0 -79
  41. package/templates/vue-template/src/vite-env.d.ts +0 -1
  42. package/templates/vue-template/tsconfig.app.json +0 -15
  43. package/templates/vue-template/tsconfig.json +0 -7
  44. package/templates/vue-template/tsconfig.node.json +0 -25
  45. package/templates/vue-template/vite.config.ts +0 -7
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # create-xuran cli
1
+ # xuran cli
2
2
 
3
3
  ![NPM License](https://img.shields.io/npm/l/%40xuranxys%2Fcli)
4
4
  ![NPM Version](https://img.shields.io/npm/v/%40xuranxys%2Fcli)
@@ -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
- create-xuran
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://xugame@qq.com)
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
- "endOfLine": "lf",
5
-
6
- "semi": true,
7
-
8
- "tabWidth": 4,
9
-
10
- "trailingComma": "none",
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
+ }