forked from opentiny/tiny-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfaces.ts
More file actions
142 lines (131 loc) · 2.58 KB
/
Copy pathinterfaces.ts
File metadata and controls
142 lines (131 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/**
* 控制台传入的参数
*/
export interface CliOption {
clientArgs: any;
clientOptions: any;
}
export enum VueVersion {
Vue3 = 'tinyvue',
}
/**
* 服务端类型
*/
export enum ServerFrameworks {
EggJs = 'eggJs',
NestJs = 'nestJs',
SpringCloud = 'springCloud',
Skip = '',
SpringBoot = 'springboot',
}
/**
* 低代码引擎选项
*/
export enum LowcodeEngine {
Include = 'lowcode-designer',
Skip = '',
}
export enum BuildTool {
Vite = 'vite',
Webpack = 'webpack',
Rspack = 'rspack',
Farm = 'farm',
}
export const buildConfigs = {
vite: ['webpack.config.js', 'rspack.config.js', 'farm.config.ts'],
webpack: ['config', 'rspack.config.js', 'farm.config.ts'],
rspack: ['config', 'webpack.config.js', 'farm.config.ts'],
farm: ['config', 'webpack.config.js', 'rspack.config.js'],
};
export const buildCommand = {
vite: 'vite build --config ./config/vite.config.prod.ts',
webpack: 'webpack --config webpack.config.js',
rspack: 'rspack build',
farm: 'farm build',
};
export const devCommand = {
vite: 'vite --config ./config/vite.config.dev.ts --port 3031',
webpack: 'webpack-dev-server --progress --config webpack.config.js',
rspack: 'rspack serve',
farm: 'farm',
};
export const removedCommand = [
'dev:wp',
'dev:rp',
'build:wp',
'build:rp',
'dev',
'dev:fr',
'build:fr',
];
/**
* 需要删除的包
*/
export const removeDependencies = {
vite: ['style-resources-loader', 'vue-style-loader'],
webpack: [],
rspack: [],
farm: [],
};
/**
* 需要删除的包
*/
export const devDependencies = {
vite: [
'@babel/preset-env',
'@babel/preset-typescript',
/@rspack\/.*/,
/webpack/,
'vue-loader',
'import-meta-loader',
'css-loader',
'core-js',
'babel-loader',
/@farmfe\/.*/,
],
rspack: [
/@vitejs\/.*/,
/vite-.*/,
'vite',
'webpack',
'webpack-cli',
'webpack-dev-server',
/@farmfe\/.*/,
],
webpack: [
/@vitejs\/.*/,
/vite-.*/,
'vite',
'@rspack/cli',
'@rspack/core',
/@farmfe\/.*/,
],
farm: [
'webpack',
'webpack-cli',
'webpack-dev-server',
/webpack-.*/,
/@rspack\/.*/,
],
};
/**
* 初始化问题的选项 -> 选择的值
*/
export interface ProjectInfo {
description: string;
framework: string;
name: string;
serverFramework: ServerFrameworks;
lowcodeEngine?: LowcodeEngine;
serverConfirm?: boolean;
dialect?: string;
host?: string;
port?: number;
database?: string;
username?: string;
password?: string;
redisHost?: string;
redisPort?: number;
buildTool: BuildTool;
vueVersion: VueVersion;
}