fixed
parent
94dcc67db1
commit
b85899650e
7
index.js
7
index.js
|
@ -28,7 +28,9 @@ import {
|
|||
} from './lib/demo-js.js'
|
||||
|
||||
const CURRENT_DIR = process.cwd()
|
||||
const root = dirname(import.meta.url.slice(process.platform === 'win32' ? 10 : 7))
|
||||
const root = dirname(
|
||||
import.meta.url.slice(process.platform === 'win32' ? 10 : 7)
|
||||
)
|
||||
const { version } = JSON.parse(fs.cat(join(root, './package.json')))
|
||||
|
||||
const DEFAULT_NAME = 'vue-live-app'
|
||||
|
@ -81,7 +83,8 @@ function printHelp() {
|
|||
{
|
||||
name: 'shouldOverwrite',
|
||||
type: _ => (isEmpty(targetDir) ? null : 'toggle'),
|
||||
message: _ => `目录 ${cyan(targetDir)} 非空, 是否${red('删除')}目录下所有的文件?`,
|
||||
message: _ =>
|
||||
`目录 ${cyan(targetDir)} 非空, 是否${red('删除')}目录下所有的文件?`,
|
||||
initial: false,
|
||||
active: '是',
|
||||
inactive: '否'
|
||||
|
|
|
@ -16,11 +16,11 @@ export function writePackageJson(file, name) {
|
|||
start: 'vue-live dev',
|
||||
build: 'vue-live build'
|
||||
},
|
||||
dependencies: {
|
||||
'@bytedo/vue-live': '^0.0.11'
|
||||
devDependencies: {
|
||||
'@bytedo/vue-live': '^0.0.15'
|
||||
}
|
||||
},
|
||||
' ',
|
||||
'null,
|
||||
2
|
||||
),
|
||||
file
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "create-vue-live",
|
||||
"type": "module",
|
||||
"version": "0.0.12",
|
||||
"version": "0.0.15",
|
||||
"bin": {
|
||||
"create-vue-live": "index.js"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue