Skip to content

Releases: denoland/deno-js-loader

0.3.0

31 Jul 17:32
66893c4

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.2.1...0.3.0

0.2.1

14 Jul 15:41
89c9d42

Choose a tag to compare

What's Changed

  • fix: support importing bytes and text from npm packages by @dsherret in #19
  • fix: error about detached ArrayBuffer by @dsherret in #22

Full Changelog: 0.2.0...0.2.1

0.2.0

09 Jul 23:36
c4e983a

Choose a tag to compare

What's Changed

load now takes a RequestedModuleType:

const javascript = await loader.load(resolvedUrl, RequestedModuleType.Default);
const bytes = await loader.load(resolvedUrl, RequestedModuleType.Bytes);
const text = await loader.load(resolvedUrl, RequestedModuleType.Text);

Full Changelog: 0.1.3...0.2.0

0.1.3

04 Jul 13:53

Choose a tag to compare

What's Changed

  • upgrades to Deno 45dfae1

Full Changelog: 0.1.2...0.1.3

0.1.2

17 Jun 20:15
d874625

Choose a tag to compare

What's Changed

Full Changelog: 0.1.1...0.1.2

0.1.1

11 Jun 19:19
f8d1491

Choose a tag to compare

What's Changed

  • fix: ensure headers are cached and loaded properly by @dsherret in #8

Full Changelog: 0.1.0...0.1.1

0.1.0

11 Jun 16:42
5cb2c22

Choose a tag to compare

What's Changed

  • fix: handle undefined values in workspace options by @dsherret in #1
  • fix: handle npm entrypoints by @dsherret in #2
  • feat: transpile loaded files by @dsherret in #3

Full Changelog: https://github.com/denoland/deno-js-loader/commits/0.1.0