Skip to content

Commit f9830e8

Browse files
committed
fix new npm name
1 parent d417946 commit f9830e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This also handles versions and git trees, which is a little more complicated tha
77
Example:
88

99
```js
10-
var Remotes = require('remotes');
10+
var Remotes = require('component-remotes');
1111
var remotes = Remotes();
1212
remotes.use(new Remotes.Local({
1313
dir: 'components'
@@ -28,7 +28,7 @@ co(function* () {
2828
A shortcut for the above is:
2929

3030
```js
31-
var remotes = require('remotes')(['github'], {
31+
var remotes = require('component-remotes')(['github'], {
3232
local: true,
3333
dir: 'components',
3434
netrc: '',
@@ -131,7 +131,7 @@ You may create your own remote. See the [remotes](https://github.com/component/r
131131
Extend a new `Remote` class with the current Remote. Example:
132132

133133
```js
134-
var Remote = require('remotes').Remote;
134+
var Remote = require('component-remotes').Remote;
135135

136136
function GitHub(options) {
137137
options = options || {}

0 commit comments

Comments
 (0)