Skip to content

Commit

Permalink
Merge pull request #526 from nextcloud/fix/noid/improve-esm-native-su…
Browse files Browse the repository at this point in the history
…pport

Improve ESM native support
  • Loading branch information
juliusknorr authored Aug 28, 2022
2 parents d2c885c + d489fb2 commit cd25740
Show file tree
Hide file tree
Showing 8 changed files with 178 additions and 139 deletions.
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

0 comments on commit cd25740

Please sign in to comment.