feat: wire pnpm conformance script + turbo task

This commit is contained in:
2026-05-12 23:58:10 +02:00
parent 24769eb442
commit dfd6e1c3cc
2 changed files with 9 additions and 0 deletions

View File

@@ -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}\""
},

View File

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