diff --git a/README.md b/README.md index 0d81c81..c0ee060 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,19 @@ $> gulp build ``` -This will create a minified version at bin/pixi.min.js and a non-minified version at bin/pixi.js. +This will create a minified version at bin/pixi.min.js and a non-minified version at bin/pixi.js with all the plugins. + +If there are specific plugins you don't want, say "spine" or "interaction", you can exclude those: + +``` +$> gulp build --exclude spine --exclude interaction +``` + +You can also use the short-form `-e`: + +``` +$> gulp build -e extras -e spine -e interaction -e filters +``` ### How to generate the documentation ###