From 5d7ba65fbfb6d1351b8e3705c6f2290cdfb5b37a Mon Sep 17 00:00:00 2001 From: gengjiawen Date: Fri, 11 Jan 2019 00:20:23 +0800 Subject: [PATCH 1/2] split lint task to make ci work properly --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 3044ebd..6884e64 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,8 @@ "scripts": { "dev": "rollup -c rollup.config.js -w", "build": "rollup -c rollup.config.js", - "lint": "eslint src test example --fix", + "lint": "eslint src test example", + "lint-fix": "eslint src test example --fix", "test": "npm run test:unit && npm run test:types", "test:unit": "jest", "test:types": "tsc -p types/test", From 2dd11f04fd386fa4647df0585dcf38e1005368b9 Mon Sep 17 00:00:00 2001 From: Jiawen Geng Date: Sat, 12 Jan 2019 19:32:15 +0800 Subject: [PATCH 2/2] Update package.json --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 6884e64..9ebd699 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,6 @@ "dev": "rollup -c rollup.config.js -w", "build": "rollup -c rollup.config.js", "lint": "eslint src test example", - "lint-fix": "eslint src test example --fix", "test": "npm run test:unit && npm run test:types", "test:unit": "jest", "test:types": "tsc -p types/test",