Skip to content

Commit

Permalink
🛏
Browse files Browse the repository at this point in the history
  • Loading branch information
transitive-bullshit committed Aug 4, 2024
1 parent ee1bf47 commit 4efd98b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
4 changes: 2 additions & 2 deletions packages/ai-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 .",
Expand Down
1 change: 0 additions & 1 deletion packages/ai-sdk/tsup.config.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/github/src/github-client.ts
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
22 changes: 15 additions & 7 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
"dependsOn": ["//#test:format", "^test:format"]
},
"test:format": {},
"//#test:format": {},
"dev": {
"cache": false,
"persistent": true
Expand Down

0 comments on commit 4efd98b

Please sign in to comment.