Skip to content

Commit 0c3d49c

Browse files
committed
Use correct package name @isomorphic-git/path-browserify
1 parent 7c5aa4e commit 0c3d49c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ npm install @isomorphic-git/path-browserify
1515
## Usage
1616

1717
```javascript
18-
import path from '@isomorphic-git/path';
18+
import path from '@isomorphic-git/path-browserify';
1919

2020
const filename = 'logo.png';
2121
const logo = path.join('./assets/img', filename);
@@ -25,13 +25,13 @@ document.querySelector('#logo').src = logo;
2525
Methods under `path` can be imported individually.
2626

2727
```javascript
28-
import { join } from '@isomorphic-git/path';
28+
import { join } from '@isomorphic-git/path-browserify';
2929
```
3030

3131
If your project uses CommonJS, this is also supported.
3232

3333
```javascript
34-
const path = require('@isomorphic-git/path');
34+
const path = require('@isomorphic-git/path-browserify');
3535
```
3636

3737
## API

0 commit comments

Comments
 (0)