Commit Graph

6 Commits

Author SHA1 Message Date
meoware.exe 06c4adf54b fix(ci): use pnpm 11 allowBuilds syntax and pin pnpm version
The previous fix (#119) used `onlyBuiltDependencies` in pnpm-workspace.yaml,
but the CI runner resolved `version: latest` to pnpm 11.1.2, where that key
was removed and replaced by `allowBuilds` (a map of name -> bool). The
`pnpm.onlyBuiltDependencies` block in package.json doesn't apply at the
workspace level either, so esbuild was still being ignored.

Changes:
- pnpm-workspace.yaml: replace `onlyBuiltDependencies: [esbuild]` with
  `allowBuilds: { esbuild: true }` (pnpm 11 syntax).
- package.json: add `packageManager: pnpm@11.1.2` so the version is
  reproducible across CI and local; drop the now-dead `pnpm` block.
- .github/workflows/build.yml: drop `version: latest` from
  pnpm/action-setup; the action reads the version from `packageManager`.
2026-05-17 13:29:38 +00:00
meoware.exe 4c6ee03df6 fix(ci): allow esbuild build scripts to fix ERR_PNPM_IGNORED_BUILDS
pnpm v10 blocks dependency build/postinstall scripts by default and
requires interactive 'pnpm approve-builds' to whitelist them, which
is not usable in CI. Declare esbuild as an allowed build in both
pnpm-workspace.yaml (canonical location since pnpm 10.7) and
package.json (legacy/parity) so installs run non-interactively.
2026-05-17 13:20:39 +00:00
meoware.exe 83ef103118 Tidal Connect Support <3 2026-04-07 18:00:51 +10:00
meoware.exe 8178699d81 Fixed Title Glow Persistance 2025-08-14 11:39:08 +10:00
meoware.exe 40d6e25d00 Updated Attributions 2025-06-02 09:36:57 +10:00
meoware.exe 5d433ce4d1 Rewrite to TidalLuna of All Plugins 2025-05-31 23:44:22 +10:00