From dfd6e1c3cc57ffe32e30e43915c7c60f33970e7b Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Tue, 12 May 2026 23:58:10 +0200 Subject: [PATCH] feat: wire pnpm conformance script + turbo task --- package.json | 1 + turbo.json | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/package.json b/package.json index 853067d..8ff87ba 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "test:e2e": "turbo run test:e2e", "test:stories": "turbo run test:stories", "typecheck": "turbo run typecheck", + "conformance": "node scripts/conformance.mjs", "format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"", "format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"" }, diff --git a/turbo.json b/turbo.json index 694fd7d..c2ec817 100644 --- a/turbo.json +++ b/turbo.json @@ -75,6 +75,14 @@ "typecheck": { "dependsOn": [] }, + "conformance": { + "inputs": [ + "packages/*/src/feature.manifest.ts", + "scripts/conformance.mjs", + "packages/core-eslint/rules/_manifest-ast.js" + ], + "outputs": [] + }, "build-storybook": { "outputs": ["storybook-static/**"] },