Skip to content

Commit 0d27d0e

Browse files
committed
update examples
1 parent 1f733da commit 0d27d0e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

examples/bun.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env -S bun run
22

3-
import {parse, Node} from '../mod';
3+
import {parse, Node} from '../mod.ts';
44

55
const blog = async () => {
66
const parser = parse('https://dbushell.com/rss.xml');

examples/deno.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env -S deno run --allow-net
22

3-
import {parse, Node} from 'jsr:@dbushell/xml-streamify@0.2';
3+
import {parse, Node} from '../mod.ts';
44

55
const blog = async () => {
66
const parser = parse('https://dbushell.com/rss.xml');

examples/node.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env -S node
22

3-
import {parse} from '@jsr/dbushell__xml-streamify';
3+
// https://jsr.io/@dbushell/xml-streamify
4+
import {parse} from '@dbushell/xml-streamify';
45

56
const blog = async () => {
67
const parser = parse('https://dbushell.com/rss.xml');

0 commit comments

Comments
 (0)