Compare commits

...
3 Commits
3 changed files with 4 additions and 4 deletions
+1
View File
@@ -12,6 +12,7 @@ notifications:
before_install:
- npm i -g npm@^2.0.0
before_script:
- npm prune
- curl -Lo travis_after_all.py https://raw.github.com/dmakhno/travis_after_all/master/travis_after_all.py
after_success:
- python travis_after_all.py
@@ -2,7 +2,6 @@
'use strict'
var abbrev = require('abbrev')
var confirm = require('confirm-simple')
var minimist = require('minimist')
var efh = require('../lib/error').standard
+3 -3
View File
@@ -3,7 +3,7 @@
"description": "automated semver compliant package publishing",
"version": "0.0.0-note.that.this.is.not.the.actual.version",
"author": "Stephan Bönnemann <stephan@boennemann.me>",
"bin": "./bin/semantic-release",
"bin": "./bin/semantic-release.js",
"bugs": {
"url": "https://github.com/boennemann/semantic-release/issues"
},
@@ -54,9 +54,9 @@
"url": "https://github.com/boennemann/semantic-release.git"
},
"scripts": {
"postpublish": "./bin/semantic-release post",
"postpublish": "./bin/semantic-release.js post",
"posttest": "./bin/post-test",
"prepublish": "./bin/semantic-release pre",
"prepublish": "./bin/semantic-release.js pre",
"pretest": "./bin/pre-test",
"test": "standard && node tests | tap-spec"
}