@qingtian/qtcli 1.0.4-beta.10 → 1.0.4-beta.12

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.
File without changes
@@ -0,0 +1,141 @@
1
+ <!doctype html>
2
+ <html lang="zh-CN">
3
+
4
+ <head>
5
+ <meta charset="utf-8" />
6
+ <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
7
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
8
+ <meta name="theme-color" content="#000000" />
9
+ <meta name="description" content="QTCli - 基于Node.js的前端工程化底座,提供完整的项目构建、开发和部署解决方案" />
10
+ <title>QTCli - 前端工程化底座</title>
11
+ <link rel="apple-touch-icon" href="%PUBLIC_URL%/favicon.ico" />
12
+ <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
13
+ <style>
14
+ body {
15
+ margin: 0;
16
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
17
+ -webkit-font-smoothing: antialiased;
18
+ -moz-osx-font-smoothing: grayscale;
19
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
20
+ min-height: 100vh;
21
+ display: flex;
22
+ align-items: center;
23
+ justify-content: center;
24
+ }
25
+
26
+ .container {
27
+ text-align: center;
28
+ color: white;
29
+ max-width: 800px;
30
+ padding: 2rem;
31
+ }
32
+
33
+ .logo {
34
+ font-size: 4rem;
35
+ font-weight: bold;
36
+ margin-bottom: 1rem;
37
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
38
+ }
39
+
40
+ .subtitle {
41
+ font-size: 1.5rem;
42
+ margin-bottom: 2rem;
43
+ opacity: 0.9;
44
+ }
45
+
46
+ .features {
47
+ display: grid;
48
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
49
+ gap: 1rem;
50
+ margin: 2rem 0;
51
+ }
52
+
53
+ .feature {
54
+ background: rgba(255, 255, 255, 0.1);
55
+ padding: 1rem;
56
+ border-radius: 8px;
57
+ backdrop-filter: blur(10px);
58
+ }
59
+
60
+ .feature-icon {
61
+ font-size: 2rem;
62
+ margin-bottom: 0.5rem;
63
+ }
64
+
65
+ .commands {
66
+ background: rgba(0, 0, 0, 0.2);
67
+ padding: 1.5rem;
68
+ border-radius: 8px;
69
+ margin: 2rem 0;
70
+ text-align: left;
71
+ }
72
+
73
+ .command {
74
+ background: rgba(0, 0, 0, 0.3);
75
+ padding: 0.5rem 1rem;
76
+ margin: 0.5rem 0;
77
+ border-radius: 4px;
78
+ font-family: 'Courier New', monospace;
79
+ border-left: 3px solid #667eea;
80
+ }
81
+
82
+ .footer {
83
+ margin-top: 2rem;
84
+ opacity: 0.7;
85
+ font-size: 0.9rem;
86
+ }
87
+ </style>
88
+ </head>
89
+
90
+ <body>
91
+ <noscript>您需要启用JavaScript才能运行此应用。</noscript>
92
+ <div class="container">
93
+ <div class="logo">QTCli</div>
94
+ <div class="subtitle">基于 Node.js 的前端工程化底座</div>
95
+
96
+ <div class="features">
97
+ <div class="feature">
98
+ <div class="feature-icon">🚀</div>
99
+ <div>快速创建和初始化项目</div>
100
+ </div>
101
+ <div class="feature">
102
+ <div class="feature-icon">📦</div>
103
+ <div>内置 Webpack 构建配置</div>
104
+ </div>
105
+ <div class="feature">
106
+ <div class="feature-icon">🔥</div>
107
+ <div>支持 React + TypeScript</div>
108
+ </div>
109
+ <div class="feature">
110
+ <div class="feature-icon">🎨</div>
111
+ <div>支持 Less、Sass、CSS Modules</div>
112
+ </div>
113
+ <div class="feature">
114
+ <div class="feature-icon">📱</div>
115
+ <div>支持移动端适配</div>
116
+ </div>
117
+ <div class="feature">
118
+ <div class="feature-icon">🔍</div>
119
+ <div>内置代码规范检查</div>
120
+ </div>
121
+ </div>
122
+
123
+ <div class="commands">
124
+ <h3>常用命令</h3>
125
+ <div class="command">qtcli --help</div>
126
+ <div class="command">qtcli init [options]</div>
127
+ <div class="command">qtcli dev [options]</div>
128
+ <div class="command">qtcli build [options]</div>
129
+ </div>
130
+
131
+ <div class="footer">
132
+ <p>版本: 1.0.3-beta.2 | 作者: yujie.guo</p>
133
+ <p>项目地址: <a href="https://gitee.com/fengrengame/qtnode" style="color: #fff;">https://gitee.com/fengrengame/qtnode</a></p>
134
+ </div>
135
+ </div>
136
+
137
+ <div id="root"></div>
138
+ </body>
139
+
140
+ </html>
141
+
@@ -0,0 +1,14 @@
1
+ {
2
+ "short_name": "QTCli",
3
+ "name": "QTCli - 前端工程化底座",
4
+ "icons": [{
5
+ "src": "favicon.ico",
6
+ "sizes": "64x64 32x32 24x24 16x16",
7
+ "type": "image/x-icon"
8
+ }],
9
+ "start_url": ".",
10
+ "display": "standalone",
11
+ "theme_color": "#667eea",
12
+ "background_color": "#764ba2"
13
+ }
14
+
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qingtian/qtcli",
3
- "version": "1.0.4-beta.10",
3
+ "version": "1.0.4-beta.12",
4
4
  "description": "QTCli是一款基于node的前端工程化底座",
5
5
  "homepage": "https://gitee.com/fengrengame/qtnode#readme",
6
6
  "bugs": {