From 955f04364f524338d7eb888f732515be2579a5b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=87=E5=A4=A9?= Date: Mon, 17 Dec 2018 11:02:43 +0800 Subject: [PATCH] update --- .travis.yml | 20 ++++++++++++++++++++ package.json | 12 ++++++------ 2 files changed, 26 insertions(+), 6 deletions(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..8380796 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: node_js + +os: + - osx + +node_js: + - node + +install: + - npm install + +cache: + directories: + - "node_modules" + +script: + - npm test + +notifications: + email: false \ No newline at end of file diff --git a/package.json b/package.json index 2825e4c..3e0a075 100644 --- a/package.json +++ b/package.json @@ -9,12 +9,8 @@ "engines": { "vscode": "^1.28.0" }, - "categories": [ - "Other" - ], - "activationEvents": [ - "*" - ], + "categories": ["Other"], + "activationEvents": ["*"], "main": "./index", "contributes": { "context": [ @@ -55,6 +51,7 @@ "url": "https://github.com/yutent/scss-to-css.git" }, "keywords": [ + "css", "scss", "sass", "easy scss", @@ -65,6 +62,9 @@ "autoprefixer", "yutent" ], + "scripts": { + "test": "node ./node_modules/vscode/bin/test" + }, "license": "MIT", "devDependencies": { "vscode": "^1.1.21"