Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve ESM native support #526

Merged
merged 5 commits into from
Aug 28, 2022
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
1 change: 1 addition & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ updates:
day: saturday
time: "03:00"
timezone: Europe/Paris
versioning-strategy: increase
open-pull-requests-limit: 10
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
.github/
node_modules/
rollup.*
tsconfig.*
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## 3.0.1 - 2022-08-24
### Changed
- Update dependencies
- Improve native ESM Support


## 3.0.0 - 2022-05-02
### Changed
- Update dependencies
Expand Down
4 changes: 2 additions & 2 deletions lib/ProxyBus.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import valid from "semver/functions/valid";
import major from "semver/functions/major";
import valid from "semver/functions/valid.js";
import major from "semver/functions/major.js";

import { Event } from "./Event.js";
import { EventBus } from "./EventBus.js";
Expand Down
Loading