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/**"] },