Skip to content

Commit

Permalink
fix: fix packag exports
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav committed Jan 9, 2024
1 parent d350dbd commit b25c887
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/@n8n/chat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@n8n/chat",
"version": "0.6.0",
"version": "0.6.1",
"scripts": {
"dev": "pnpm run storybook",
"build": "pnpm type-check && pnpm build:vite && pnpm run build:individual && npm run build:prepare",
Expand All @@ -20,13 +20,13 @@
"build:storybook": "storybook build",
"release": "pnpm run build:full && cd dist && pnpm publish"
},
"main": "./chat.umd.cjs",
"main": "./chat.umd.js",
"module": "./chat.es.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./chat.es.js",
"require": "./chat.umd.cjs"
"import": "./index.mjs",
"require": "./index.js"
},
"./style.css": {
"import": "./style.css",
Expand Down

0 comments on commit b25c887

Please sign in to comment.