From b15cc05fcd9f79210e7adb11e9fa215a63a59822 Mon Sep 17 00:00:00 2001 From: Gary Gambill Date: Wed, 27 Mar 2019 22:08:50 -0500 Subject: [PATCH 01/27] Fix env parsing in webpack config for tns debug --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index c50c2d5..238ca88 100644 --- a/index.js +++ b/index.js @@ -103,7 +103,8 @@ module.exports = (api, projectOptions) => { // take advantage of the vue cli api to load the --env items into process.env. // we are filtering out the items, by catching the '=' sign, brought in from nsconfig.json as those don't need loaded into process.env - api.service.loadEnv(flags.filter((o) => !o.includes('=')).join('.')); + // we are also filtering out 'sourceMap' which will appear with 'tns debug' + api.service.loadEnv(flags.filter((o) => !o.includes('=') && !o.includes('sourceMap')).join('.')); } // setup the traditional {N} webpack 'env' variable From c98fb47a69f634f8fd1c81566845dcee50030e21 Mon Sep 17 00:00:00 2001 From: jawa-the-hutt Date: Wed, 27 Mar 2019 22:12:17 -0500 Subject: [PATCH 02/27] build 0.0.14 --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index ef58434..6715a3c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vue-cli-plugin-nativescript-vue", - "version": "0.0.13", + "version": "0.0.14", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6184d35..751114f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-cli-plugin-nativescript-vue", - "version": "0.0.13", + "version": "0.0.14", "description": "A vue cli 3.x plugin for NativeScript-Vue", "main": "index.js", "files": [ From 86b9c5a2d70a1683c3a3be83bd77eba96fe3d318 Mon Sep 17 00:00:00 2001 From: Igor Randjelovic Date: Wed, 10 Apr 2019 21:39:44 +0200 Subject: [PATCH 03/27] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d511820..6ebfdf8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The key feature of this plugin is that it will allow you to compose SFC's that c An example of this would be the following Vue component: -``` +```html