Skip to content

Commit

Permalink
release: 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfiszr committed Nov 17, 2024
1 parent d736f7c commit 14f1519
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 @@ -19,7 +19,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].4
deno install --global --allow-read --allow-write jsr:@jackfiszr/[email protected].5
```

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

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

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

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

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

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

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

## 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.4",
"version": "0.0.5",
"exports": "./mod.ts",
"imports": {
"@cliffy/command": "jsr:@cliffy/[email protected]",
Expand Down

0 comments on commit 14f1519

Please sign in to comment.