Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,8 @@ jobs:
with:
deno-version: v2.x
- run: gleam deps download
- run: npm install
if: matrix.target.runtime == 'node'
- run: bun install
if: matrix.target.runtime == 'bun'
- run: deno install
if: matrix.target.runtime == 'deno'
- run: gleam test --target ${{ matrix.target.name }} ${{ matrix.target.runtime && format('--runtime {0}', matrix.target.runtime) || '' }}

format:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "parsed_it"
version = "0.1.0"
version = "0.1.1"

description = "A Gleam parsing & serialization library for common formats such as JSON & XML"
licences = ["Apache-2.0"]
Expand Down
1 change: 1 addition & 0 deletions src/parsed_it/vendor/_xmldom_entry.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { DOMParser, XMLSerializer } from "@xmldom/xmldom";
Loading