Skip to content

Commit

Permalink
jsr package
Browse files Browse the repository at this point in the history
  • Loading branch information
dbushell committed Feb 15, 2024
1 parent 433a6c9 commit fe3da02
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Publish

on:
push:
branches:
- main

jobs:
publish:
name: Publish
runs-on: ubuntu-latest

permissions:
id-token: write
contents: read

steps:
- name: Clone Repository
uses: actions/checkout@v4

- name: Install Deno
uses: denoland/setup-deno@v1

- name: Publish Package
run: deno publish
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
!.gitignore
!.github
!deno.json
!README.md
!LICENSE
Expand Down
11 changes: 11 additions & 0 deletions deno.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "@dbushell/xml-streamify",
"version": "0.2.0",
"exports": {
".": "./mod.ts",
"./node": "./src/node.ts",
"./parse": "./src/parse.ts",
"./stream": "./src/stream.ts",
"./types": "./src/types.ts"
}
}

0 comments on commit fe3da02

Please sign in to comment.