Files
chromebrew/packages/pnpm.rb
chromebrew-actions[bot] 2fd7de3039 pnpm: 10.32.1 → 10.33.0 (#15148)
* pnpm -> 10.33.0 in updater-pnpm-10.33.0

* updater-pnpm-10.33.0: Package File Update Run on linux/amd64 container.

---------

Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
2026-03-25 03:58:55 +00:00

22 lines
581 B
Ruby

require 'package'
class Pnpm < Package
description 'Fast, disk space efficient package manager'
homepage 'https://pnpm.io/'
version '10.33.0'
license 'MIT'
compatibility 'x86_64'
source_url "https://github.com/pnpm/pnpm/releases/download/v#{version}/pnpm-linux-x64"
source_sha256 '8d4e8f7d778e8ac482022e2577011706a872542f6f6f233e795a4d9f978ea8b5'
no_compile_needed
def self.install
FileUtils.install 'pnpm-linux-x64', "#{CREW_DEST_PREFIX}/bin/pnpm", mode: 0o755
end
def self.postinstall
ExitMessage.add "\nType 'pnpm' to get started.\n"
end
end