Skip to content

Commit

Permalink
release: 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfiszr committed Jan 13, 2025
1 parent 7dfb82c commit c92be41
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ efficient and high-quality PDF manipulation.
To install `pdfrex` as a CLI tool, run:

```bash
deno install --global --allow-read --allow-write jsr:@jackfiszr/[email protected].5
deno install --global --allow-read --allow-write jsr:@jackfiszr/[email protected].6
```

This command installs `pdfrex` globally, enabling the `pdfrex` command with
Expand Down Expand Up @@ -125,7 +125,7 @@ directly.
### Merge PDFs

```typescript
import { mergeAll, mergePdfs } from "jsr:@jackfiszr/[email protected].5";
import { mergeAll, mergePdfs } from "jsr:@jackfiszr/[email protected].6";

// Merge all PDFs in the current directory
await mergeAll();
Expand All @@ -142,7 +142,7 @@ await mergePdfs(["file1.pdf", "file2.pdf", "file3.pdf"], {
### Split PDFs

```typescript
import { splitAll, splitPdf } from "jsr:@jackfiszr/[email protected].5";
import { splitAll, splitPdf } from "jsr:@jackfiszr/[email protected].6";

// Split all PDFs in the current directory
await splitAll();
Expand All @@ -154,11 +154,11 @@ await splitPdf("document.pdf", { outputDir: "./pages", prefix: "page" });
### Adding to a Node.js project

```bash
npx jsr add @jackfiszr/[email protected].5
npx jsr add @jackfiszr/[email protected].6
```

```javascript
import { mergePdfs, splitPdf } from "@jackfiszr/[email protected].5";
import { mergePdfs, splitPdf } from "@jackfiszr/[email protected].6";
```

## Contributing
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jackfiszr/pdfrex",
"version": "0.0.5",
"version": "0.0.6",
"exports": "./mod.ts",
"imports": {
"@cliffy/command": "jsr:@cliffy/[email protected]",
Expand Down

0 comments on commit c92be41

Please sign in to comment.