mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 06:58:07 -05:00
fix(ts-sdk): fix job to publish ts sdk (#1576)
This commit is contained in:
1
.github/workflows/publish-ts-sdk.yml
vendored
1
.github/workflows/publish-ts-sdk.yml
vendored
@@ -25,7 +25,6 @@ jobs:
|
||||
registry-url: 'https://registry.npmjs.org/'
|
||||
|
||||
- name: Install dependencies
|
||||
working-directory: packages/ts-sdk
|
||||
run: bun install
|
||||
|
||||
- name: Run tests
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"name": "simstudio-ts-sdk",
|
||||
"version": "0.1.0",
|
||||
"description": "Sim SDK - Execute workflows programmatically",
|
||||
"type": "module",
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2020",
|
||||
"module": "commonjs",
|
||||
"module": "ES2020",
|
||||
"lib": ["ES2020"],
|
||||
"outDir": "./dist",
|
||||
"rootDir": "./src",
|
||||
|
||||
@@ -8,4 +8,7 @@ export default defineConfig({
|
||||
include: ['src/**/*.test.{ts,tsx}', 'tests/**/*.test.{ts,tsx}'],
|
||||
exclude: ['**/node_modules/**', '**/dist/**'],
|
||||
},
|
||||
resolve: {
|
||||
conditions: ['node', 'default'],
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user