Skip to content

Commit

Permalink
try without pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
imcotton committed Mar 9, 2024
1 parent 9a8dd9b commit 939c1f6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/jsr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- pkg

jobs:

Expand All @@ -19,5 +20,5 @@ jobs:

- uses: actions/checkout@v4

- run: npx jsr publish
- run: npx jsr publish --dry-run

3 changes: 3 additions & 0 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@key/gen-ssh-ed25519",
"version": "0.1.0",
"imports": {
"ed25519-keygen/ssh": "npm:ed25519-keygen@~0.4.11/ssh"
},
"publish": {
"include": [
"deno.json",
Expand Down
2 changes: 1 addition & 1 deletion src/mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ssh from 'npm:ed25519-keygen@~0.4.11/ssh';
import ssh from 'ed25519-keygen/ssh';

import { PBKDF2 } from './pbkdf2.ts';

Expand Down

0 comments on commit 939c1f6

Please sign in to comment.