Skip to content

Commit

Permalink
Publish on JSR
Browse files Browse the repository at this point in the history
Signed-off-by: Marcos Candeia <[email protected]>
  • Loading branch information
mcandeia committed Aug 7, 2024
1 parent 11e6c48 commit f850c57
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Publish
on:
push:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4

- name: Publish package
run: npx jsr publish
5 changes: 4 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"compilerOptions": {
"lib": ["esnext", "dom", "dom.iterable", "deno.ns"]
}
},
"name": "@deco/inspect-vscode",
"version": "0.2.1",
"exports": "./mod.ts"
}
5 changes: 2 additions & 3 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import inspectHandler from "./handler.ts";
import DomInspector from "./inspector.ts";

export { DomInspector, inspectHandler };
import DomInspector, { DomInspectorActivators } from "./inspector.ts";
export { DomInspector, DomInspectorActivators, inspectHandler };

0 comments on commit f850c57

Please sign in to comment.