[READ-ONLY] Mirror of https://github.com/flo-bit/tiny-docs. quick setup, simple, minimalistic docs for your github project flo-bit.dev/tiny-docs/
0

Configure Feed

Select the types of activity you want to include in your feed.

fix build, pin pnpm

+9 -10
+1
package.json
··· 2 2 "name": "tiny-docs", 3 3 "type": "module", 4 4 "version": "0.0.1", 5 + "packageManager": "pnpm@11.5.2", 5 6 "scripts": { 6 7 "dev": "astro dev", 7 8 "start": "astro dev",
+8 -10
pnpm-workspace.yaml
··· 1 1 packages: 2 2 - "." 3 3 4 - # Allow native deps to run their install/build scripts. Without this, 5 - # pnpm 10 reports "Ignored build scripts", which is only a warning locally 6 - # but becomes a hard ERR_PNPM_IGNORED_BUILDS failure in CI (e.g. inside 7 - # withastro/action). That is what breaks the Deploy Docs workflow. 8 - # es5-ext's script is only a funding notice, so it stays ignored. 9 - onlyBuiltDependencies: 10 - - esbuild 11 - - sharp 12 - ignoredBuiltDependencies: 13 - - es5-ext 4 + # pnpm 11 gates dependency build scripts behind an explicit allow-list. 5 + # Without this, native deps' build scripts are skipped and pnpm exits with 6 + # ERR_PNPM_IGNORED_BUILDS in CI (e.g. inside withastro/action), which breaks 7 + # the Deploy Docs workflow. es5-ext's script is only a funding notice. 8 + allowBuilds: 9 + esbuild: true 10 + sharp: true 11 + es5-ext: false