-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add paths to REQUIRE_EXCLUDE #66
Comments
There's no functionality to do this at present. You could perform a glob Alternatively, I'll take a pull request that adds glob support to the On Mon, 15 Feb 2016 at 10:02 Tobias Lorenz notifications@github.com wrote:
|
yea, I'd also like to exclude the |
How about using a regex? Something like: https://github.com/Tyrdall/django-require/commit/115d2ff30943458f58bcea5eaebe314cddae94b4 To exclude some files from uglyfying you can use the following setting in your
|
I suppose that the Django convention is to use a regex, rather than a glob On Thu, 18 Feb 2016 at 07:04 Tobias Lorenz notifications@github.com wrote:
|
Hi, I need to speed up my deployments. Therefore I want to exclude some scripts from optimization, for example, 'ckeditor/ckeditor/ckeditor.js' and all its dependencies and plugins. Currently it takes minutes to run
collectstatic
, so is there any best practice to add whole paths to theREQUIRE_EXCLUDE
setting, like'ckeditor'
.The text was updated successfully, but these errors were encountered: