From 7d67fad2121fca870734c6f176c4a13a92536609 Mon Sep 17 00:00:00 2001 From: Steve Streeting Date: Wed, 14 Jun 2023 14:46:22 +0100 Subject: [PATCH] Add docs about exclusions --- doc/PluginPackage.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/doc/PluginPackage.md b/doc/PluginPackage.md index 7138ccb..43a4fb0 100644 --- a/doc/PluginPackage.md +++ b/doc/PluginPackage.md @@ -33,4 +33,19 @@ in the root of your plugin, next to the .uplugin file. The options are: { "OutputDir": "C:\\Users\\Steve\\MarketplaceBuilds", "PluginFile": "OptionalPluginFilenameWillDetectInDirOtherwise.uplugin" -} \ No newline at end of file +} + +## Excluding Files + +By default, the plugin packaging process automatically excludes common +files and directories that shouldn't be there: + +./.git/ +./.git* +./Binaries/ +./Intermediate/ +./Saved/ +./pluginconfig.json + +If you'd like to exclude other things, create a file called `packageexclusions.txt` +in the root of the plugin, listing files/folders you want to exclude (one per line).