Skip to content

Commit

Permalink
Fixed bundler resolution for module declaration merging
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Jul 5, 2024
1 parent bd3742a commit 2fd8ff4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Piral Changelog

## 1.6.0 (tbd)
## 1.6.0 (July 5, 2024)

- Fixed event dispatching for providers in `piral-blazor`
- Fixed navigation storm in angular pilets (#672)
- Fixed declaration merging for `moduleResolution` set to `bundler`
- Improved setup of event listeners in `piral-blazor` (#696)
- Improved fallback signature in `piral-translate`
- Updated dependencies
Expand Down
4 changes: 4 additions & 0 deletions src/framework/piral-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
"import": "./dist/piral-base-full.mjs",
"types": "./lib/index.full.d.ts"
},
"./lib/*": {
"require": "./lib/*",
"types": "./lib/*.d.ts"
},
"./package.json": "./package.json"
},
"sideEffects": false,
Expand Down
12 changes: 8 additions & 4 deletions src/framework/piral-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,21 @@
"exports": {
".": {
"import": "./esm/index.js",
"require": "./lib/index.js"
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./esm/*": {
"import": "./esm/*"
"import": "./esm/*",
"types": "./lib/*.d.ts"
},
"./lib/*": {
"require": "./lib/*"
"require": "./lib/*",
"types": "./lib/*.d.ts"
},
"./_/*": {
"import": "./esm/*.js",
"require": "./lib/*.js"
"require": "./lib/*.js",
"types": "./lib/*.d.ts"
},
"./package.json": "./package.json"
},
Expand Down

0 comments on commit 2fd8ff4

Please sign in to comment.