From 71ae5046a18bcf5b2f1b80ee57d1928b5ac93dd6 Mon Sep 17 00:00:00 2001 From: Lionel Bijaoui Date: Wed, 24 Aug 2016 15:30:52 +0200 Subject: [PATCH 1/2] fix: small bug with quotes --- dev/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/utils.js b/dev/utils.js index 16afa3a9..9b904ab9 100644 --- a/dev/utils.js +++ b/dev/utils.js @@ -18,7 +18,7 @@ module.exports = { } else if (/null/.test(match)) { cls = "null"; } - return "" + match + ""; + return "" + match + ""; }); } } From 04a71a089ff1d546bf9fdbe40095b0552703c103 Mon Sep 17 00:00:00 2001 From: Lionel Bijaoui Date: Wed, 24 Aug 2016 15:35:21 +0200 Subject: [PATCH 2/2] dev: add another port to karma watch, so that it raise no warning when both commands (test and ci) run at the same time --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e0eb5826..ecdb9714 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "e2e": "node test/e2e/runner.js", "pretest": "npm run lint", "test": "npm run unit", - "ci": "karma start test/unit/karma.conf.js --auto-watch --no-single-run --reporters=dots" + "ci": "karma start test/unit/karma.conf.js --auto-watch --no-single-run --reporters=dots --port=9877" }, "keywords": [ "vue",