Skip to content

Commit

Permalink
solve openai name conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
aboutphilippe committed Aug 18, 2024
1 parent 336a83c commit 79a03f7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
13 changes: 9 additions & 4 deletions openai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,14 @@
"require": "./dist/service.js",
"types": "./dist/service.d.ts"
},
"./*": {
"import": "./dist/*",
"require": "./dist/*",
"types": "./dist/*"
"./taskQueue": {
"import": "./dist/taskQueue.js",
"require": "./dist/taskQueue.js",
"types": "./dist/taskQueue.d.ts"
},
"./functions": {
"import": "./dist/functions/*",
"require": "./dist/functions/*",
"types": "./dist/functions/*"
}
}
5 changes: 4 additions & 1 deletion openai/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./"
"rootDir": "./",
"paths": {
"openai": ["node_modules/openai"]
}
},
"include": ["**/*"]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@restackio/restack-sdk-integrations",
"version": "0.0.9",
"version": "0.0.10",
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r run dev"
Expand Down

0 comments on commit 79a03f7

Please sign in to comment.