diff --git a/packages/ai-sdk/package.json b/packages/ai-sdk/package.json index 9179c9d..7caa457 100644 --- a/packages/ai-sdk/package.json +++ b/packages/ai-sdk/package.json @@ -23,8 +23,8 @@ "dist" ], "scripts": { - "build": "tsup", - "dev": "tsup --watch", + "build": "tsup --config ../../tsup.config.ts", + "dev": "tsup --config ../../tsup.config.ts --watch", "clean": "del dist", "test": "run-s test:*", "test:lint": "eslint .", diff --git a/packages/ai-sdk/tsup.config.ts b/packages/ai-sdk/tsup.config.ts deleted file mode 100644 index 010d372..0000000 --- a/packages/ai-sdk/tsup.config.ts +++ /dev/null @@ -1 +0,0 @@ -export { default } from '../../tsup.config' diff --git a/packages/github/src/github-client.ts b/packages/github/src/github-client.ts index 1d22d35..7fe9aa5 100644 --- a/packages/github/src/github-client.ts +++ b/packages/github/src/github-client.ts @@ -1,4 +1,4 @@ -import { AIFunctionsProvider , assert, getEnv } from '@agentic/core' +import { AIFunctionsProvider, assert, getEnv } from '@agentic/core' import { Octokit } from 'octokit' export namespace github { diff --git a/turbo.json b/turbo.json index 335421c..a3db906 100644 --- a/turbo.json +++ b/turbo.json @@ -4,31 +4,39 @@ "tasks": { "build": { "dependsOn": ["^build"], - "outputs": ["dist/**"] + "outputs": ["dist/**"], + "outputLogs": "new-only" }, "clean": { "dependsOn": ["^clean"], - "outputs": ["dist/**"] + "outputs": ["dist/**"], + "outputLogs": "new-only" }, "test": { "dependsOn": [ - "build", "test:format", "test:lint", + "build", "test:typecheck", "test:unit" ] }, "test:lint": { - "dependsOn": ["^test:lint"] + "dependsOn": ["^test:lint"], + "outputLogs": "errors-only" }, "test:typecheck": { - "dependsOn": ["^test:typecheck"] + "dependsOn": ["^test:typecheck"], + "outputLogs": "errors-only" }, "test:unit": { - "dependsOn": ["^test:unit"] + "dependsOn": ["^test:unit"], + "outputLogs": "errors-only" }, - "test:format": {}, + "test:format": { + "dependsOn": ["//#test:format", "^test:format"] + }, + "//#test:format": {}, "dev": { "cache": false, "persistent": true