Skip to content

Commit

Permalink
Make deployment process as it was to begin with
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-andrews committed Jan 12, 2015
1 parent 5b7e895 commit 121f0a4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
language: node_js
script: make test
before_deploy:
- npm-prepublish --verbose --lax
deploy:
provider: npm
email: [email protected]
Expand Down
11 changes: 7 additions & 4 deletions MAINTAINING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@ minor version "1.x.x" bump is in order.

To prepare the release commit:

1. Edit the npm [package.json](https://github.com/github/fetch/blob/master/package.json)
1. Edit the [bower.json](https://github.com/github/fetch/blob/master/bower.json)
`version` value.
2. Make a single commit with the description as "Fetch 1.x.x".
3. Finally, tag the commit with `v1.x.x`.
2. Change the npm [package.json](https://github.com/github/fetch/blob/master/package.json)
`version` value to match.
3. Make a single commit with the description as "Fetch 1.x.x".
4. Finally, tag the commit with `v1.x.x`.

```
$ git pull
$ vim bower.json
$ vim package.json
$ git add package.json
$ git add bower.json package.json
$ git commit -m "Fetch 1.x.x"
$ git tag v1.x.x
$ git push
Expand Down
1 change: 1 addition & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "fetch",
"version": "0.4.0",
"main": "fetch.js",
"devDependencies": {
"es6-promise": "1.0.0"
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"name": "whatwg-fetch",
"version": "0.4.0",
"main": "fetch.js",
"private": true,
"devDependencies": {
"bower": "1.3.8",
"chai": "1.10.0",
Expand Down

0 comments on commit 121f0a4

Please sign in to comment.