mirror of
https://github.com/penpot/penpot.git
synced 2026-09-12 06:58:57 +00:00
Run `corepack use pnpm@next-12` (resolved to 12.3.4) on every directory with a package.json: the repo root, the 11 module workspaces, and all submodules. Every packageManager field now carries the same pinned version and hash; the root and backend move off 11.20.0. Fix the composable-test-suite workspace config (esbuild allowBuilds placeholder left by pnpm 12) so its install passes, and add the missing packageManager fields to frontend/packages/ui and mcp/packages/plugin, since corepack only updates existing fields. Document the canonical update procedure in .serena/memories/workflow/updating-pnpm.md. AI-assisted-by: omen-alpha
45 lines
1.5 KiB
JSON
45 lines
1.5 KiB
JSON
{
|
|
"name": "exporter",
|
|
"version": "1.0.0",
|
|
"license": "MPL-2.0",
|
|
"author": "Kaleidos INC Sucursal en España SL",
|
|
"private": true,
|
|
"packageManager": "pnpm@12.3.4+sha512.961aa41fb077da3a04a441d9f8e15ebc0c96da8ef710b2eb67bf9ee7cb0610eabd48f1fd85f51cffe73846785fa0f87c56a3a872a1d893f8446741b5cce45457",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/penpot/penpot"
|
|
},
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@penpot/svgo": "penpot/svgo#3.3.0",
|
|
"archiver": "8.0.0",
|
|
"cookies": "^0.9.1",
|
|
"date-fns": "^4.4.0",
|
|
"generic-pool": "^3.9.0",
|
|
"inflation": "^2.1.0",
|
|
"ioredis": "^6.0.0",
|
|
"playwright": "1.62.1",
|
|
"raw-body": "^4.0.0",
|
|
"source-map-support": "^0.5.21",
|
|
"undici": "^8.10.0",
|
|
"xml-js": "^1.6.11",
|
|
"xregexp": "^5.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"ws": "^8.21.3"
|
|
},
|
|
"scripts": {
|
|
"clear:shadow-cache": "rm -rf .shadow-cljs && rm -rf target",
|
|
"watch:app": "pnpm run clear:shadow-cache && clojure -M:dev:shadow-cljs watch main",
|
|
"watch": "pnpm run watch:app",
|
|
"build:app": "clojure -M:dev:shadow-cljs release main",
|
|
"build": "pnpm run clear:shadow-cache && pnpm run build:app",
|
|
"fmt:clj": "cljfmt fix --parallel=true src/ test/",
|
|
"check-fmt:clj": "cljfmt check --parallel=true src/ test/",
|
|
"lint:clj": "clj-kondo --parallel --lint src/ test/",
|
|
"build:test": "clojure -M:dev:shadow-cljs compile test",
|
|
"test": "pnpm run build:test && node target/tests/test.js",
|
|
"test:quiet": "node ./scripts/test-quiet.js"
|
|
}
|
|
}
|