Skip to content

Commit e32b006

Browse files
Fix travis (#190)
* Latest node for Travis * Remove auto publish * Update all dependencies
1 parent db0aa8c commit e32b006

File tree

5 files changed

+1501
-22
lines changed

5 files changed

+1501
-22
lines changed

.travis.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- "0.10"
5-
before_deploy:
6-
- npm-prepublish --verbose
7-
deploy:
8-
provider: npm
9-
email: matt@mattandre.ws
10-
api_key:
11-
secure: eEeb1aG7phF4X5z+CQ3yzTdXtHf71Dk4ec6v5iAjRYNh/s6GLxfZS7c4qocZI8YXW3YmmsJR5zGZ2l88k2iqTtlBn0Mrp6ytwIa/jO00kDpR8V11eW9i47KRQq25eA1YW+SrLM5V/fh+s9u3VU7jhbax5eeViqVdwORI85kZrZE=
12-
on:
13-
all_branches: true
14-
tags: true
15-
repo: matthew-andrews/isomorphic-fetch
4+
- 14

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ Fetch for node and Browserify. Built on top of [GitHub's WHATWG Fetch polyfill]
66
## Warnings
77

88
- This adds `fetch` as a global so that its API is consistent between client and server.
9-
- You must bring your own ES6 Promise compatible polyfill, I suggest [es6-promise](https://github.com/jakearchibald/es6-promise).
109

1110
For [ease-of-maintenance and backward-compatibility reasons][why polyfill], this library will always be a polyfill. As a "safe" alternative, which does not modify the global, consider [fetch-ponyfill][].
1211

@@ -18,19 +17,18 @@ For [ease-of-maintenance and backward-compatibility reasons][why polyfill], this
1817
### NPM
1918

2019
```sh
21-
npm install --save isomorphic-fetch es6-promise
20+
npm install --save isomorphic-fetch
2221
```
2322

2423
### Bower
2524

2625
```sh
27-
bower install --save isomorphic-fetch es6-promise
26+
bower install --save isomorphic-fetch
2827
```
2928

3029
## Usage
3130

3231
```js
33-
require('es6-promise').polyfill();
3432
require('isomorphic-fetch');
3533

3634
fetch('//offline-news-api.herokuapp.com/stories')

0 commit comments

Comments
 (0)