Skip to content

v0.3.1

Latest

Choose a tag to compare

@hntrl hntrl released this 22 Apr 18:53
3efcc69

What's Changed

This release gives some TLC to the bundling process for each package:

  • All bundle outputs (for both cjs and esm) contain sourcemaps now
  • All packages now produce a browser-friendly output that can be delivered using a CDN:
<!-- Development -->
<script src="https://unpkg.com/@eventkit/base/dist/index.global.js"></script>
<!-- Minified -->
<script src="https://unpkg.com/@eventkit/base/dist/index.global.min.js"></script>
// adding either of those scripts will add the `eventkit` global var
const { Stream, map, filter } = eventkit;
const stream = new Stream()

Patch Changes

Fixed some issues where types would be missing and hard to debug when installing packages from pnpm.

Changes by Package