pull/657/head
Travis Fischer 2024-08-04 01:57:39 -05:00
rodzic ee1bf47e62
commit 4efd98b5dc
4 zmienionych plików z 18 dodań i 11 usunięć

Wyświetl plik

@ -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 .",

Wyświetl plik

@ -1 +0,0 @@
export { default } from '../../tsup.config'

Wyświetl plik

@ -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 {

Wyświetl plik

@ -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