Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs: fix incorrect command
The original command does not run because options should come after the entry file:
```
SYNTAX
  asc [entryFile ...] [options]
```
  • Loading branch information
eccentricexit authored Sep 22, 2020
commit f6e5f397c5ab40a79d6e37922057a5f8b41717f9
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ $> npm install --save-dev AssemblyScript/node
and include it in your build step to gain access to the implementations it provides:

```
$> asc --lib ./node_modules/@assemblyscript/node/assembly [...]
$> asc ./node_modules/@assemblyscript/node/assembly --lib [...]
```

Doing so will automatically register common globals like the `Buffer` class and enables requiring
Expand Down