old-agentic
Travis Fischer 2024-08-04 01:57:39 -05:00
rodzic 8bf60535de
commit 89d64c53e8
4 zmienionych plików z 18 dodań i 11 usunięć

Wyświetl plik

@ -23,8 +23,8 @@
"dist" "dist"
], ],
"scripts": { "scripts": {
"build": "tsup", "build": "tsup --config ../../tsup.config.ts",
"dev": "tsup --watch", "dev": "tsup --config ../../tsup.config.ts --watch",
"clean": "del dist", "clean": "del dist",
"test": "run-s test:*", "test": "run-s test:*",
"test:lint": "eslint .", "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' import { Octokit } from 'octokit'
export namespace github { export namespace github {

Wyświetl plik

@ -4,31 +4,39 @@
"tasks": { "tasks": {
"build": { "build": {
"dependsOn": ["^build"], "dependsOn": ["^build"],
"outputs": ["dist/**"] "outputs": ["dist/**"],
"outputLogs": "new-only"
}, },
"clean": { "clean": {
"dependsOn": ["^clean"], "dependsOn": ["^clean"],
"outputs": ["dist/**"] "outputs": ["dist/**"],
"outputLogs": "new-only"
}, },
"test": { "test": {
"dependsOn": [ "dependsOn": [
"build",
"test:format", "test:format",
"test:lint", "test:lint",
"build",
"test:typecheck", "test:typecheck",
"test:unit" "test:unit"
] ]
}, },
"test:lint": { "test:lint": {
"dependsOn": ["^test:lint"] "dependsOn": ["^test:lint"],
"outputLogs": "errors-only"
}, },
"test:typecheck": { "test:typecheck": {
"dependsOn": ["^test:typecheck"] "dependsOn": ["^test:typecheck"],
"outputLogs": "errors-only"
}, },
"test:unit": { "test:unit": {
"dependsOn": ["^test:unit"] "dependsOn": ["^test:unit"],
"outputLogs": "errors-only"
}, },
"test:format": {}, "test:format": {
"dependsOn": ["//#test:format", "^test:format"]
},
"//#test:format": {},
"dev": { "dev": {
"cache": false, "cache": false,
"persistent": true "persistent": true