From a4f30bf969d3c9a761fba9c91a85e84fb7d03a35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josh=20Goldberg=20=E2=9C=A8?= Date: Wed, 20 Dec 2023 13:56:30 -0500 Subject: [PATCH] chore: replace last yarn references with pnpm (#86) ## PR Checklist - [x] Addresses an existing open issue: fixes #85 - [x] That issue was marked as [`status: accepting prs`](https://github.com/dmnd/dedent/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/dmnd/dedent/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Fixes the last few `yarn` references in `package.json` scripts to instead say `pnpm`. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 53a3e67..4ca2cb5 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "README.md" ], "scripts": { - "build": "yarn build:legacy && yarn build:modern && yarn build:types", + "build": "pnpm build:legacy && pnpm build:modern && pnpm build:types", "build:legacy": "BABEL_ENV=legacy babel src/dedent.ts --out-file dist/dedent.js", "build:modern": "BABEL_ENV=modern babel src/dedent.ts --out-file dist/dedent.mjs", "build:types": "tsup src/dedent.ts --dts-only",