publishing working

This commit is contained in:
Wlad Paiva
2023-10-15 16:46:18 -03:00
parent 1d05b4c1ca
commit 864a0679d5
6 changed files with 39 additions and 8 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@wladiston/chatflow': patch
---
add dist files in the exported module
+7 -2
View File
@@ -2,7 +2,12 @@
"mode": "pre",
"tag": "beta",
"initialVersions": {
"chatflow": "0.0.0"
"chatflow": "0.0.0",
"@wladiston/chatflow": "0.0.1-beta.0"
},
"changesets": ["afraid-gifts-move"]
"changesets": [
"afraid-gifts-move",
"friendly-needles-smile",
"soft-brooms-develop"
]
}
+5
View File
@@ -0,0 +1,5 @@
---
'@wladiston/chatflow': patch
---
fix module exports
+12
View File
@@ -1,5 +1,17 @@
# chatflow
## 0.0.1-beta.2
### Patch Changes
- fix module exports
## 0.0.1-beta.1
### Patch Changes
- add dist files in the exported module
## 0.0.1-beta.0
### Patch Changes
BIN
View File
Binary file not shown.
+10 -6
View File
@@ -1,7 +1,11 @@
{
"name": "@wladiston/chatflow",
"version": "0.0.1-beta.0",
"version": "0.0.1-beta.2",
"description": "A chat flow organizer for AI agents",
"repository": {
"type": "git",
"url": "https://github.com/wladiston/chatflow.git"
},
"author": {
"name": "Wlad Paiva",
"email": "desenvolvedormg@gmail.com"
@@ -10,14 +14,14 @@
"types": "src/index.ts",
"exports": {
".": {
"import": "./src/index.js",
"import": "./dist/index.js",
"types": "./src/index.ts"
},
"./utils": {
"import": "./src/utils/index.ts",
"types": "./src/utils/index.ts"
}
},
"files": [
"dist",
"src"
],
"type": "module",
"scripts": {
"build": "bun build ./src/index.ts --outdir=./dist",