Unignore lock file

This commit is contained in:
Vendicated 2022-10-09 22:31:51 +02:00
parent 25a64ab6be
commit 304bf4fe29
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3
6 changed files with 1757 additions and 29 deletions

View file

@ -5,7 +5,7 @@ const { execSync } = require("child_process");
console.log("\nVencord Installer\n");
if (!fs.existsSync(path.join(process.cwd(), "node_modules"))) {
console.log("You need to install dependencies first. Run:", "pnpm install");
console.log("You need to install dependencies first. Run:", "pnpm install --frozen-lockfile");
process.exit(1);
}

View file

@ -4,7 +4,7 @@ const fs = require("fs");
console.log("\nVencord Uninstaller\n");
if (!fs.existsSync(path.join(process.cwd(), "node_modules"))) {
console.log("You need to install dependencies first. Run:", "pnpm install");
console.log("You need to install dependencies first. Run:", "pnpm install --frozen-lockfile");
process.exit(1);
}