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