Skip to content

Commit 1fc5040

Browse files
authored
Merge pull request #9 from bytecodealliance/cfallin/fix-npm-readme
Fix NPM readme to reference new repo location
2 parents f5c5ecd + 8155050 commit 1fc5040

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

npm/weval/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
> Prebuilt weval binaries available via npm
44
5-
See the [weval repository](https://github.com/cfallin/weval) for more details.
5+
See the [weval repository](https://github.com/bytecodealliance/weval) for more details.
66

77
## API
88

99
```
10-
$ npm install --save @cfallin/weval
10+
$ npm install --save @bytecodealliance/weval
1111
```
1212

1313
```js
1414
const execFile = require('child_process').execFile;
15-
const weval = require('@cfallin/weval');
15+
const weval = require('@bytecodealliance/weval');
1616

1717
execFile(weval, ['-w', '-i', 'snapshot.wasm', '-o', 'wevaled.wasm'], (err, stdout) => {
1818
console.log(stdout);

0 commit comments

Comments
 (0)