-
Notifications
You must be signed in to change notification settings - Fork 59
feat: @supaglue/sdk first release #2033
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
I'm thinking of changing |
477678f
to
7d71dfd
Compare
https://www.npmjs.com/package/@supaglue/sdk?activeTab=readme Need to add docs, but already works! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How much effort would it be to migrate our existing integration tests to use the SDK?
Not much. We already do in at least one integration test. Should be a straightforward refactor. |
@@ -1,9 +1,11 @@ | |||
{ | |||
"name": "@supaglue/schemas", | |||
"name": "@supaglue/sdk", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have we tested this in a non-monorepo project? We should have to set main
, types
or exports
at least so that we can specify where the index.js
file is.
"name": "@supaglue/sdk", | |
"name": "@supaglue/sdk", | |
"publishConfig": { | |
"main": "./dist/index.js", | |
"types": "./dist/index.d.ts" | |
}, |
Should do it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yea, I tested it via grabbing the published npm package and confirm it works.
No description provided.