diff --git a/meta.json b/meta.json index 9d400f5..0c46e83 100644 --- a/meta.json +++ b/meta.json @@ -1,5 +1,5 @@ { - "schema": { + "prompts": { "name": { "type": "string", "required": true, @@ -14,10 +14,7 @@ "author": { "type": "string", "label": "Author" - }, - "private": { - "type": "boolean", - "default": true } - } + }, + "completeMessage": "To get started:\n\n cd {{destDirName}}\n npm install\n npm run dev" } diff --git a/template/package.json b/template/package.json index 0b8227d..b0d0222 100644 --- a/template/package.json +++ b/template/package.json @@ -2,9 +2,7 @@ "name": "{{ name }}", "description": "{{ description }}", "author": "{{ author }}", - {{#private}} "private": true, - {{/private}} "scripts": { "watchify": "watchify -vd -p browserify-hmr -e src/main.js -o dist/build.js", "serve": "http-server -o -s -c 1 -a localhost", diff --git a/template/src/App.vue b/template/src/App.vue index c96cd30..f1a7bd6 100644 --- a/template/src/App.vue +++ b/template/src/App.vue @@ -1,21 +1,65 @@ -