File tree Expand file tree Collapse file tree 6 files changed +8
-10
lines changed
Expand file tree Collapse file tree 6 files changed +8
-10
lines changed Original file line number Diff line number Diff 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 ) ;
Original file line number Diff line number Diff 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 : {
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ source "$NVM_DIR/nvm.sh"
77nvm 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
1616pm2 reload ecosystem.config.js
Original file line number Diff line number Diff line change @@ -5,9 +5,7 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next
55First, run the development server:
66
77``` bash
8- npm run dev
9- # or
10- yarn dev
8+ pnpm dev
119```
1210
1311Open [ http://localhost:3000 ] ( http://localhost:3000 ) with your browser to see the result.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { parseFile } from "../tools/parse-mi";
55import 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
1111const compilers = path . join ( __dirname , "../resources/maki_compiler/" ) ;
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments