From 9b5cf5774879852c03a5606fbbd742af7cc9d0ef Mon Sep 17 00:00:00 2001 From: Haaxor1689 Date: Sat, 9 Dec 2023 11:33:31 +0100 Subject: [PATCH] Added special mpq files to patchignore --- README.md | 6 ++++++ package.json | 2 +- src/patchignore.ts | 6 ++++++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c00ab5..d3ec8e4 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,12 @@ If no `.patchignore` file is found, these defaults will be used: **/*.md **/*.sql +# ignore special mpq files +(listfile) +(attributes) +(signature) +(user data) + .patchignore ``` diff --git a/package.json b/package.json index 53db728..32d83fc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "haax-mpq", - "version": "1.1.4", + "version": "1.1.5", "author": "Haaxor1689", "license": "MIT", "repository": { diff --git a/src/patchignore.ts b/src/patchignore.ts index 6bbb187..db47248 100644 --- a/src/patchignore.ts +++ b/src/patchignore.ts @@ -24,6 +24,12 @@ const defaultPatchignore = ` **/*.md **/*.sql +# ignore special mpq files +(listfile) +(attributes) +(signature) +(user data) + .patchignore`; const Patchignore = async (directoryPath: string) => {