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) => {