kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
pull/657/head
rodzic
ee1bf47e62
commit
4efd98b5dc
|
@ -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 .",
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
export { default } from '../../tsup.config'
|
|
@ -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 {
|
||||
|
|
22
turbo.json
22
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
|
||||
|
|
Ładowanie…
Reference in New Issue