forked from openinula/inula
commit
977e4cbd1e
|
@ -0,0 +1,4 @@
|
|||
# openinula + vite
|
||||
|
||||
该模板提供了 `openinula` 工作在 `vite`的基础配置。
|
||||
> 请注意由于Vite插件有node版本限制,请使用`node -v`命令确认node版本大于等于node v18。
|
|
@ -0,0 +1,4 @@
|
|||
# openinula + vite
|
||||
|
||||
该模板提供了 `openinula` 工作在 `vite`的基础配置。
|
||||
> 请注意由于Vite插件有node版本限制,请使用`node -v`命令确认node版本大于等于node v18。
|
|
@ -62,7 +62,17 @@ const run = async config => {
|
|||
}
|
||||
process.emit('message', { type: 'prompt' });
|
||||
|
||||
let { type } = config;
|
||||
let { type, name } = config;
|
||||
if (!name) {
|
||||
const answers = await inquirer.prompt([
|
||||
{
|
||||
name: 'projectName',
|
||||
message: 'Project name',
|
||||
type: 'input'
|
||||
},
|
||||
]);
|
||||
config.name = answers.projectName;
|
||||
}
|
||||
if (!type) {
|
||||
const answers = await inquirer.prompt([
|
||||
{
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
"bin": {
|
||||
"create-inula": "bin/cli.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 18.0.0"
|
||||
},
|
||||
"files": [
|
||||
"bin",
|
||||
"lib",
|
||||
|
|
Loading…
Reference in New Issue