From 6f3beb03b0279cd525b261471ef3a73c4cc26243 Mon Sep 17 00:00:00 2001 From: Adrien Antoine Date: Tue, 1 Mar 2016 14:10:25 +0000 Subject: [PATCH] fix: Fixed the wrong task name --- .travis.yml | 2 +- publish.sh | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100755 publish.sh diff --git a/.travis.yml b/.travis.yml index 4529069..edb2a04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,4 @@ cache: script: - npm run lint - npm run test - - npm run publish \ No newline at end of file + - npm run release \ No newline at end of file diff --git a/publish.sh b/publish.sh deleted file mode 100755 index 0f39381..0000000 --- a/publish.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/env sh - -rm -rf node_modules - -npm install && -npm test && -npm version ${1:-patch} && -npm run build - -npm publish - -git push origin master --follow-tags