diff --git a/package.json b/package.json index f0936b6f..e2bd9487 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,8 @@ "lint:fix:file": "biome check --write", "link:aliases": "node build/scripts/link-aliases.mjs", "size": "node .github/scripts/bundle-size.js | node .github/scripts/bundle-size-report.js", - "test": "turbo run test --filter='./packages/*'", + "test": "turbo run test --filter='./packages/*' --filter='!@videojs/cli'", + "test:cli": "turbo run test --filter=@videojs/cli", "test:e2e": "pnpm --dir apps/e2e test:all", "test:e2e:vite": "pnpm --dir apps/e2e test:vite", "test:e2e:update": "pnpm --dir apps/e2e test:update", diff --git a/packages/cli/turbo.json b/packages/cli/turbo.json new file mode 100644 index 00000000..d4485729 --- /dev/null +++ b/packages/cli/turbo.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://turbo.build/schema.json", + "extends": ["//"], + "tasks": { + "test": { + "dependsOn": [], + "outputs": [] + } + } +}