fix: scope Node build jobs to Node packages

This commit is contained in:
Maximiliano Korp
2026-09-11 11:04:46 -07:00
parent 9d1cb414ab
commit c58c1a5083
+4 -2
View File
@@ -2,8 +2,9 @@
"name": "CopilotKit",
"private": true,
"scripts": {
"build": "nx run-many -t build --projects=packages/** --exclude=@copilotkit/demo-agents,runtime-python,runtime-go,runtime-ruby,runtime-dotnet",
"build": "nx run-many -t build --projects=packages/** --exclude=@copilotkit/demo-agents,runtime-python,runtime-go,runtime-ruby,runtime-dotnet,intelligence-delivery-python-core,intelligence-langgraph-python,intelligence-adk-python,intelligence-agent-framework-dotnet",
"build:native-runtimes": "nx run-many -t build -p runtime-python,runtime-go,runtime-ruby,runtime-dotnet",
"build:skill-adapters": "nx run-many -t build -p intelligence-delivery-python-core,intelligence-langgraph-python,intelligence-adk-python,intelligence-agent-framework-dotnet",
"build:examples": "nx run-many -t build --projects=examples/**",
"build:storybook": "nx run-many -t storybook:build --projects=examples/v2/*/storybook",
"build:vue": "nx run @copilotkit/vue:build",
@@ -12,8 +13,9 @@
"lint": "oxlint .",
"format": "oxfmt --write .",
"check-format": "oxfmt --check .",
"test": "nx run-many -t test --projects=packages/** --exclude=runtime-python,runtime-go,runtime-ruby,runtime-dotnet",
"test": "nx run-many -t test --projects=packages/** --exclude=runtime-python,runtime-go,runtime-ruby,runtime-dotnet,intelligence-delivery-python-core,intelligence-langgraph-python,intelligence-adk-python,intelligence-agent-framework-dotnet",
"test:native-runtimes": "nx run-many -t test -p runtime-python,runtime-go,runtime-ruby,runtime-dotnet",
"test:skill-adapters": "nx run-many -t test -p intelligence-delivery-python-core,intelligence-langgraph-python,intelligence-adk-python,intelligence-agent-framework-dotnet",
"test:watch": "pnpm run test && nx watch --all -- pnpm run test",
"test:coverage": "nx run-many -t test:coverage --projects=packages/**",
"dev": "pnpm run build && nx watch --projects=packages/** -- pnpm run build",