更新版本
parent
8f9327f23c
commit
9b97e8727e
|
@ -8,17 +8,21 @@ import fs from 'iofs'
|
|||
|
||||
export function writePackageJson(file) {
|
||||
fs.echo(
|
||||
JSON.stringify({
|
||||
name: 'vue-live-demo-app',
|
||||
type: 'module',
|
||||
scripts: {
|
||||
start: 'vue-live dev',
|
||||
build: 'vue-live build'
|
||||
JSON.stringify(
|
||||
{
|
||||
name: 'vue-live-demo-app',
|
||||
type: 'module',
|
||||
scripts: {
|
||||
start: 'vue-live dev',
|
||||
build: 'vue-live build'
|
||||
},
|
||||
dependencies: {
|
||||
'@bytedo/vue-live': '^0.0.6'
|
||||
}
|
||||
},
|
||||
dependencies: {
|
||||
'@bytedo/vue-live': '^0.0.5'
|
||||
}
|
||||
}),
|
||||
' ',
|
||||
2
|
||||
),
|
||||
file
|
||||
)
|
||||
}
|
||||
|
|
|
@ -61,7 +61,7 @@ import { reactive } from 'vue'
|
|||
|
||||
const store = reactive({
|
||||
foo: 'bar',
|
||||
version: '0.0.5'
|
||||
version: '0.0.6'
|
||||
})
|
||||
|
||||
export default function (app) {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@bytedo/vue-live-cli",
|
||||
"type": "module",
|
||||
"version": "0.0.3",
|
||||
"version": "0.0.6",
|
||||
"bin": {
|
||||
"vue-live-cli": "index.js"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue