Skip to content

Commit

Permalink
chore(messaging-js-client): fix dist file path
Browse files Browse the repository at this point in the history
  • Loading branch information
kruplm committed Oct 15, 2024
1 parent 6d6bbe1 commit 0a6a707
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/messaging/js/composeui-messaging-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"description": "JavaScript client for ComposeUI's Message Router",
"type": "module",
"files": [
"dist/esm/**/*"
"dist/**/*"
],
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:clean && npm run build:rollup",
"build:clean": "rimraf dist",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const config = [
input: inputFileName,
output: [
{
file: "dist/esm/index.js",
file: "dist/index.js",
format: "es",
sourcemap: "inline",
banner: banner,
Expand Down

0 comments on commit 0a6a707

Please sign in to comment.