mirror of
https://github.com/evdboom/Bindery.git
synced 2026-07-22 06:49:36 +00:00
- Added bindery-merge as a workspace in package.json. - Updated vscode-ext to include @bindery/merge as a dependency. - Refactored merge.ts to re-export merging functionalities from @bindery/merge, removing legacy code. - Simplified tool-locate.ts by re-exporting tool location logic from @bindery/merge, enhancing code reuse and maintainability. Co-authored-by: Copilot <copilot@github.com>
16 lines
341 B
JSON
16 lines
341 B
JSON
{
|
|
"name": "bindery-monorepo",
|
|
"private": true,
|
|
"workspaces": [
|
|
"bindery-core",
|
|
"bindery-merge",
|
|
"vscode-ext",
|
|
"mcp-ts",
|
|
"obsidian-plugin"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run build -ws --if-present",
|
|
"test": "npm run test -ws --if-present",
|
|
"build:core": "npm run build --workspace=bindery-core"
|
|
}
|
|
}
|