Skip to content

Commit 5d78229

Browse files
committed
Update repository links
1 parent d7f9908 commit 5d78229

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# browser-resolve [![Build Status](https://travis-ci.org/defunctzombie/node-browser-resolve.png?branch=master)](https://travis-ci.org/defunctzombie/node-browser-resolve)
1+
# browser-resolve [![Build Status](https://travis-ci.org/browserify/browser-resolve.png?branch=master)](https://travis-ci.org/browserify/browser-resolve)
22

33
node.js resolve algorithm with [browser field](https://github.com/defunctzombie/package-browser-field-spec) support.
44

@@ -17,13 +17,13 @@ Options:
1717
* `packageFilter` - transform the parsed `package.json` contents before looking at the `main` field
1818
* `paths` - `require.paths` array to use if nothing is found on the normal `node_modules` recursive walk
1919

20-
Options supported by [node-resolve](https://github.com/substack/node-resolve#resolveid-opts-cb) can be used.
20+
Options supported by [node-resolve](https://github.com/browserify/resolve#resolveid-opts-cb) can be used.
2121

2222
### resolve.sync(id, opts={})
2323

2424
Same as the async resolve, just uses sync methods.
2525

26-
Options supported by [node-resolve](https://github.com/substack/node-resolve#resolvesyncid-opts) `sync` can be used.
26+
Options supported by [node-resolve](https://github.com/browserify/resolve#resolvesyncid-opts) `sync` can be used.
2727

2828
## basic usage
2929

@@ -37,7 +37,7 @@ resolve('../', { filename: __filename }, function(err, path) {
3737

3838
```
3939
$ node example/resolve.js
40-
/home/substack/projects/node-browser-resolve/index.js
40+
/home/substack/projects/browser-resolve/index.js
4141
```
4242

4343
## core modules
@@ -57,7 +57,7 @@ resolve('fs', { modules: shims }, function(err, path) {
5757

5858
```
5959
$ node example/builtin.js
60-
/home/substack/projects/node-browser-resolve/builtin/fs.js
60+
/home/substack/projects/browser-resolve/builtin/fs.js
6161
```
6262

6363
## browser field
@@ -86,7 +86,7 @@ resolve('./main.js', parent, function(err, path) {
8686

8787
```
8888
$ node example/custom.js
89-
/home/substack/projects/node-browser-resolve/example/custom/custom.js
89+
/home/substack/projects/browser-resolve/example/custom/custom.js
9090
```
9191

9292
## skip
@@ -132,7 +132,7 @@ resolve('tar', parent, function(err, path) {
132132

133133
```
134134
$ node example/skip.js
135-
/home/substack/projects/node-browser-resolve/empty.js
135+
/home/substack/projects/browser-resolve/empty.js
136136
```
137137

138138
# license

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"repository": {
1414
"type": "git",
15-
"url": "git://github.com/shtylman/node-browser-resolve.git"
15+
"url": "git://github.com/browserify/browser-resolve.git"
1616
},
1717
"keywords": [
1818
"resolve",

0 commit comments

Comments
 (0)