Skip to content
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

Update example of mixing [un]compressed files #513

Merged
merged 2 commits into from Dec 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/bundles.rst
Expand Up @@ -95,7 +95,7 @@ need to merge together with uncompressed ones, you could do it like so:

register('js-all',
'jquery.min.js',
Bundle(filters='jsmin', 'uncompressed.js'))
Bundle('uncompressed.js', filters='jsmin'))


Generally speaking, nested bundles allow you to apply different sets of
Expand Down
2 changes: 1 addition & 1 deletion src/webassets/env.py
Expand Up @@ -684,7 +684,7 @@ def _get_directory(self):
'The environment has no "directory" configured')
directory = property(_get_directory, _set_directory, doc=
"""The base directory to which all paths will be relative to,
unless :attr:`load_paths` are given, in which case this will
unless :attr:`load_path` are given, in which case this will
only serve as the output directory.

In the url space, it is mapped to :attr:`urls`.
Expand Down