-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: relocate typescript monorepo using pnpm and turbo
- Loading branch information
Showing
4 changed files
with
55 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,15 +9,16 @@ | |
"typescript/examples/langchain-farcaster-chatbot" | ||
], | ||
"scripts": { | ||
"build": "pnpm --filter \"./agentkit/**\" --filter \"./examples/**\" --filter \"./framework-extensions/**\" build", | ||
"test": "pnpm --filter \"./agentkit/**\" --filter \"./examples/**\" --filter \"./framework-extensions/**\" test", | ||
"lint": "pnpm --filter \"./agentkit/**\" --filter \"./examples/**\" --filter \"./framework-extensions/**\" lint", | ||
"clean": "pnpm --filter \"./agentkit/**\" --filter \"./examples/**\" --filter \"./framework-extensions/**\" clean", | ||
"docs": "pnpm --filter \"./agentkit/**\" --filter \"./examples/**\" --filter \"./framework-extensions/**\" docs", | ||
"dev": "pnpm --filter \"./agentkit/**\" --filter \"./examples/**\" --filter \"./framework-extensions/**\" dev", | ||
"format": "pnpm --filter \"./agentkit/**\" --filter \"./examples/**\" --filter \"./framework-extensions/**\" format", | ||
"format:check": "pnpm --filter \"./agentkit/**\" --filter \"./examples/**\" --filter \"./framework-extensions/**\" format:check", | ||
"lint:fix": "pnpm --filter \"./agentkit/**\" --filter \"./examples/**\" --filter \"./framework-extensions/**\" lint:fix" | ||
"build": "turbo run build", | ||
"test": "turbo run test", | ||
"lint": "turbo run lint", | ||
"clean": "turbo run clean", | ||
"docs": "turbo run docs", | ||
"dev": "turbo run dev", | ||
"format": "turbo run format", | ||
"format:check": "turbo run format:check", | ||
"lint:fix": "turbo run lint:fix", | ||
"test:types": "turbo run test:types" | ||
}, | ||
"packageManager": "[email protected]", | ||
"author": "Coinbase Inc.", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"$schema": "https://turbo.build/schema.json", | ||
"globalDependencies": [".env"], | ||
"tasks": { | ||
"build": { | ||
"dependsOn": ["^build"], | ||
"outputs": ["dist/**"] | ||
}, | ||
"test": { | ||
"dependsOn": ["build"], | ||
"inputs": ["src/**/*.ts", "test/**/*.ts"] | ||
}, | ||
"lint": { | ||
"outputs": [] | ||
}, | ||
"lint:fix": { | ||
"cache": false | ||
}, | ||
"format": { | ||
"cache": false | ||
}, | ||
"format:check": { | ||
"cache": false | ||
}, | ||
"clean": { | ||
"cache": false | ||
}, | ||
"docs": { | ||
"outputs": ["docs/**"] | ||
}, | ||
"dev": { | ||
"cache": false, | ||
"persistent": true | ||
}, | ||
"test:types": { | ||
"dependsOn": ["build"] | ||
} | ||
} | ||
} |