Clean up outdated references to yarn

This commit is contained in:
Jordan Eldredge 2025-11-03 15:39:26 -08:00
parent 4b405bc831
commit 340e2249ae
6 changed files with 8 additions and 10 deletions

View file

@ -171,7 +171,7 @@ program
console.log("====================================");
}
if (purge) {
// cat purge | xargs -I {} yarn cli skin --purge {}
// cat purge | xargs -I {} pnpm cli skin --purge {}
await Skins.deleteSkin(md5);
const purgedArr: string[] = (await KeyValue.get("purged")) || [];
const purged = new Set(purgedArr);

View file

@ -6,7 +6,7 @@ module.exports = {
apps: [
{
name: "skin-database-blue",
script: "yarn",
script: "pnpm",
interpreter: "bash",
args: "start",
env: {
@ -16,7 +16,7 @@ module.exports = {
},
{
name: "skin-database-green",
script: "yarn",
script: "pnpm",
interpreter: "bash",
args: "start",
env: {

View file

@ -7,10 +7,10 @@ source "$NVM_DIR/nvm.sh"
nvm use 20
# Install dependencies
yarn install --frozen-lockfile
pnpm install --frozen-lockfile
# Build the site
yarn run build
pnpm run build
# Reload processes via PM2
pm2 reload ecosystem.config.js

View file

@ -5,9 +5,7 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next
First, run the development server:
```bash
npm run dev
# or
yarn dev
pnpm dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

View file

@ -5,7 +5,7 @@ import { parseFile } from "../tools/parse-mi";
import path from "path";
/**
* This file basically ensures that `yarn extract-object-types` has been run.
* This file basically ensures that `pnpm extract-object-types` has been run.
*/
const compilers = path.join(__dirname, "../resources/maki_compiler/");

View file

@ -5,7 +5,7 @@ module.exports = {
server: {
// Note: We require the the build be run before these tests.
// TODO: Figure out how to get this command to run the build.
command: "PORT=8080 yarn serve",
command: "PORT=8080 pnpm serve",
port: 8080, // Jest Puppeteer will wait 5000ms for this port to come online.
launchTimeout: 10000, // Jest Puppeteer will wait 10000ms for the server to start.
debug: true,