Skip to content

Commit 340e224

Browse files
committed
Clean up outdated references to yarn
1 parent 4b405bc commit 340e224

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

packages/skin-database/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ program
171171
console.log("====================================");
172172
}
173173
if (purge) {
174-
// cat purge | xargs -I {} yarn cli skin --purge {}
174+
// cat purge | xargs -I {} pnpm cli skin --purge {}
175175
await Skins.deleteSkin(md5);
176176
const purgedArr: string[] = (await KeyValue.get("purged")) || [];
177177
const purged = new Set(purgedArr);

packages/skin-database/ecosystem.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = {
66
apps: [
77
{
88
name: "skin-database-blue",
9-
script: "yarn",
9+
script: "pnpm",
1010
interpreter: "bash",
1111
args: "start",
1212
env: {
@@ -16,7 +16,7 @@ module.exports = {
1616
},
1717
{
1818
name: "skin-database-green",
19-
script: "yarn",
19+
script: "pnpm",
2020
interpreter: "bash",
2121
args: "start",
2222
env: {

packages/skin-database/scripts/reload.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ source "$NVM_DIR/nvm.sh"
77
nvm use 20
88

99
# Install dependencies
10-
yarn install --frozen-lockfile
10+
pnpm install --frozen-lockfile
1111

1212
# Build the site
13-
yarn run build
13+
pnpm run build
1414

1515
# Reload processes via PM2
1616
pm2 reload ecosystem.config.js

packages/skin-museum-og/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next
55
First, run the development server:
66

77
```bash
8-
npm run dev
9-
# or
10-
yarn dev
8+
pnpm dev
119
```
1210

1311
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

packages/webamp-modern/tools/parse-mi.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { parseFile } from "../tools/parse-mi";
55
import path from "path";
66

77
/**
8-
* This file basically ensures that `yarn extract-object-types` has been run.
8+
* This file basically ensures that `pnpm extract-object-types` has been run.
99
*/
1010

1111
const compilers = path.join(__dirname, "../resources/maki_compiler/");

packages/webamp/jest-puppeteer.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = {
55
server: {
66
// Note: We require the the build be run before these tests.
77
// TODO: Figure out how to get this command to run the build.
8-
command: "PORT=8080 yarn serve",
8+
command: "PORT=8080 pnpm serve",
99
port: 8080, // Jest Puppeteer will wait 5000ms for this port to come online.
1010
launchTimeout: 10000, // Jest Puppeteer will wait 10000ms for the server to start.
1111
debug: true,

0 commit comments

Comments
 (0)