From 245c943e11eb3bd5f5f9918b7b7f9beb045dae54 Mon Sep 17 00:00:00 2001 From: Thorsten Date: Sun, 11 Sep 2016 22:17:41 +0200 Subject: [PATCH] Add choice between Vue runtime-only and standalone build. --- meta.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/meta.json b/meta.json index 9d400f5..848cd6d 100644 --- a/meta.json +++ b/meta.json @@ -18,6 +18,22 @@ "private": { "type": "boolean", "default": true - } + }, + "build": { + "type": "list", + "Message": "Vue comes in two build versions, which do you want to use?", + "choices": [ + { + "name": "Runtime-only: lighter, but no support for templates defined in .html files (.vue files are fine)", + "value": "runtime", + "short": "tuntime" + }, + { + "name": "Standalone: heavier, because it includes the template parser to allow template in .html files", + "value": "standalone", + "short": "standalone" + } + ] + }, } }