From ed351b3ae56d04220bddf1e6e15f109657494f89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=96=9B=E5=AE=9A=E8=B0=94=E7=9A=84=E7=8C=AB?= Date: Fri, 23 Jun 2017 01:39:52 -0500 Subject: [PATCH 1/4] Chore: add npm scripts: test --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 0d0a591880..bf35f40f06 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "description": "A full-featured Webpack setup with hot-reload, lint-on-save, unit testing & css extraction.", "scripts": { "docs": "cd docs && gitbook serve", - "docs:deploy": "bash ./deploy-docs.sh" + "docs:deploy": "bash ./deploy-docs.sh", + "test": "bash ./test.sh" }, "devDependencies": { "vue-cli": "^2.8.1" From 06d947488577993a60050d05de3c4e3a8284083b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=96=9B=E5=AE=9A=E8=B0=94=E7=9A=84=E7=8C=AB?= Date: Sun, 25 Jun 2017 15:13:10 +0800 Subject: [PATCH 2/4] update --- test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test.sh b/test.sh index 5f0d4f119d..0aa1d7ebdc 100644 --- a/test.sh +++ b/test.sh @@ -1,3 +1,4 @@ +#!/bin/sh set -e yes "" | ./node_modules/.bin/vue init . test From e8467366064ecbf1c4790e8a3ebc4017de5ac453 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=96=9B=E5=AE=9A=E8=B0=94=E7=9A=84=E7=8C=AB?= Date: Sun, 25 Jun 2017 15:15:36 +0800 Subject: [PATCH 3/4] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bf35f40f06..d480409206 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "docs": "cd docs && gitbook serve", "docs:deploy": "bash ./deploy-docs.sh", - "test": "bash ./test.sh" + "test": "./test.sh" }, "devDependencies": { "vue-cli": "^2.8.1" From 03868e15d221eb5f81b9aa8163e09cc7193ef804 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=96=9B=E5=AE=9A=E8=B0=94=E7=9A=84=E7=8C=AB?= Date: Mon, 28 Aug 2017 18:53:50 +0800 Subject: [PATCH 4/4] Update package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d480409206..5ba2dadeb6 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "description": "A full-featured Webpack setup with hot-reload, lint-on-save, unit testing & css extraction.", "scripts": { "docs": "cd docs && gitbook serve", - "docs:deploy": "bash ./deploy-docs.sh", - "test": "./test.sh" + "docs:deploy": "sh ./deploy-docs.sh", + "test": "sh ./test.sh" }, "devDependencies": { "vue-cli": "^2.8.1"