Unignore lock file

main
Vendicated 2 years ago
parent 25a64ab6be
commit 304bf4fe29
No known key found for this signature in database
GPG Key ID: EC781ADFB93EFFA3

@ -18,10 +18,10 @@ jobs:
uses: actions/setup-node@v2 uses: actions/setup-node@v2
with: with:
node-version: 18 node-version: 18
cache: 'pnpm' cache: "pnpm"
- name: Install dependencies - name: Install dependencies
run: pnpm install run: pnpm install --frozen-lockfile
- name: Build aliucord - name: Build aliucord
run: pnpm lint && pnpm build run: pnpm lint && pnpm build

2
.gitignore vendored

@ -6,8 +6,6 @@ vencord_installer
.idea .idea
# These are absolute pain causing merge conflicts
pnpm-lock.yaml
yarn.lock yarn.lock
package-lock.json package-lock.json

@ -4,11 +4,17 @@ Welcome to Megu's Installation Guide! In this file, you will learn about how to
## Sections ## Sections
- [Installation Guide](#installation-guide)
- [Sections](#sections)
- [Dependencies](#dependencies) - [Dependencies](#dependencies)
- [Installing Vencord](#installing-vencord) - [Installing Vencord](#installing-vencord)
- [Updating Vencord](#updating-vencord) - [Updating Vencord](#updating-vencord)
- [Uninstalling Vencord](#uninstalling-vencord) - [Uninstalling Vencord](#uninstalling-vencord)
- [Manually Installing Vencord](#manually-installing-vencord) - [Manually Installing Vencord](#manually-installing-vencord)
- [On Windows](#on-windows)
- [On Linux](#on-linux)
- [On MacOS](#on-macos)
- [Manual Patching](#manual-patching)
- [Manually Uninstalling Vencord](#manually-uninstalling-vencord) - [Manually Uninstalling Vencord](#manually-uninstalling-vencord)
## Dependencies ## Dependencies
@ -38,7 +44,7 @@ cd Vencord
Install dependencies: Install dependencies:
```shell ```shell
pnpm install pnpm install --frozen-lockfile
``` ```
Build Vencord: Build Vencord:
@ -95,7 +101,7 @@ pnpm uninject
The above command may ask you to also run: The above command may ask you to also run:
```shell ```shell
pnpm install pnpm install --frozen-lockfile
pnpm uninject pnpm uninject
``` ```

File diff suppressed because it is too large Load Diff

@ -5,7 +5,7 @@ const { execSync } = require("child_process");
console.log("\nVencord Installer\n"); console.log("\nVencord Installer\n");
if (!fs.existsSync(path.join(process.cwd(), "node_modules"))) { 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); process.exit(1);
} }

@ -4,7 +4,7 @@ const fs = require("fs");
console.log("\nVencord Uninstaller\n"); console.log("\nVencord Uninstaller\n");
if (!fs.existsSync(path.join(process.cwd(), "node_modules"))) { 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); process.exit(1);
} }

Loading…
Cancel
Save