Skip to content

Commit d8a246a

Browse files
committed
Update README to reflect package scope name
1 parent 6ce35ba commit d8a246a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can use `revlog-converter` as a standalone command-line tool to convert log
1414

1515
To use the CLI globally:
1616

17-
`npm install -g revlog-converter`
17+
`npm install -g @rev-robotics/revlog-converter`
1818

1919
#### Basic Usage
2020

@@ -41,14 +41,14 @@ You can import `revlog-converter` into your own TypeScript or JavaScript project
4141

4242
#### Installation
4343

44-
`npm install revlog-converter`
44+
`npm install @rev-robotics/revlog-converter`
4545

4646
#### 1\. File-to-File Conversion
4747

4848
Pass file paths directly to the parser. The function handles reading and writing for you.
4949

5050
```typescript
51-
import { parseREVLOG } from 'revlog-converter';
51+
import { parseREVLOG } from '@rev-robotics/revlog-converter';
5252

5353
async function convertFile() {
5454
try {
@@ -66,7 +66,7 @@ async function convertFile() {
6666
For advanced use cases (e.g., web servers, processing streams), you can pass a `Buffer` containing the REVLOG data. The function returns a `Promise<Buffer>` containing the generated WPILOG data.
6767

6868
```typescript
69-
import { parseREVLOG } from 'revlog-converter';
69+
import { parseREVLOG } from '@rev-robotics/revlog-converter';
7070
import { promises as fs } from 'fs';
7171

7272
async function processInMemory() {

0 commit comments

Comments
 (0)