mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-24 06:35:10 +00:00
## Summary Migrate pnpm configuration to the v11 layout and clean up stale v10-era references. ## Changes - **What**: Moves pnpm settings into `pnpm-workspace.yaml`, converts build dependency policy to `allowBuilds`, removes stale workspace `packageManager` pins, and updates global install commands in CI. - **Dependencies**: No new dependencies. ## Review Focus - Confirm pnpm v11 workspace settings match the former `.npmrc` behavior. - Confirm CI global install syntax is compatible with pnpm v11. ## Test Plan - `pnpm install --frozen-lockfile` - `pnpm exec oxfmt --check pnpm-workspace.yaml packages/shared-frontend-utils/package.json packages/registry-types/package.json packages/ingest-types/package.json packages/design-system/package.json .github/workflows/weekly-docs-check.yaml .github/workflows/pr-claude-review.yaml` - commit hook: `pnpm typecheck` ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-12195-build-migrate-pnpm-config-to-v11-35e6d73d36508116a821dbc71db94cd1) by [Unito](https://www.unito.io) --------- Co-authored-by: Amp <amp@ampcode.com>
30 lines
619 B
JSON
30 lines
619 B
JSON
{
|
|
"name": "@comfyorg/design-system",
|
|
"version": "1.0.0",
|
|
"description": "Shared design system for ComfyUI Frontend",
|
|
"type": "module",
|
|
"exports": {
|
|
"./css/*": "./src/css/*"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@iconify-json/lucide": "catalog:",
|
|
"@iconify/tailwind4": "catalog:",
|
|
"@iconify/utils": "catalog:",
|
|
"tailwindcss-primeui": "catalog:",
|
|
"tw-animate-css": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"tailwindcss": "catalog:",
|
|
"typescript": "catalog:"
|
|
},
|
|
"nx": {
|
|
"tags": [
|
|
"scope:shared",
|
|
"type:design"
|
|
]
|
|
}
|
|
}
|