Skip to content

Commit

Permalink
Merge pull request #27 from swup/fix/package-exports
Browse files Browse the repository at this point in the history
  • Loading branch information
hirasso committed Sep 28, 2023
2 parents 8529da6 + c0cbd1b commit 229145c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [4.0.4] - 2023-09-28

- Fix package exports

## [4.0.3] - 2023-09-28

- Port to TypeScript
Expand Down Expand Up @@ -28,6 +32,7 @@

- Initial release

[4.0.4]: https://github.com/swup/debug-plugin/releases/tag/4.0.4
[4.0.3]: https://github.com/swup/debug-plugin/releases/tag/4.0.3
[4.0.2]: https://github.com/swup/debug-plugin/releases/tag/4.0.2
[4.0.1]: https://github.com/swup/debug-plugin/releases/tag/4.0.1
Expand Down
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
{
"name": "@swup/debug-plugin",
"amdName": "SwupDebugPlugin",
"version": "4.0.3",
"version": "4.0.4",
"description": "A swup plugin for debugging and helping in development",
"type": "module",
"source": "src/index.js",
"source": "src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"exports": "./dist/index.modern.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.modern.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
Expand Down

0 comments on commit 229145c

Please sign in to comment.