Metadata-Version: 1.1
Name: django-pipeline-browserify
Version: 0.1.0
Summary: 
django-pipeline compiler for browserify, requires browserify to be installed.

Home-page: https://github.com/j0hnsmith/django-pipeline-browserify
Author: j0hnsmith
Author-email: UNKNOWN
License: UNKNOWN
Description: Django Pipeline Browserify
        ==========================
        
        django-pipeline-browserify is a compiler for `django-pipeline <https://github.com/cyberdelia/django-pipeline>`_. Making it really easy to use `browserify <http://browserify.org/>`_ with Django via pipeline.
        
        To install it::
        
            sudo npm install -g browserify
            pip install django-pipeline-browserify
        
        And add it as a compiler to pipeline in your django `settings.py`::
        
            PIPELINE_COMPILERS = (
                'pipeline_browserify.compiler.BrowserifyCompiler',
            )
        
        To add source maps during development (or any other browserify args)::
        
            if DEBUG:
                PIPELINE_BROWSERIFY_ARGUMENTS = '-d'
        
        **Important:** give your entry-point file a `.browserify.js` extension::
        
            PIPELINE_JS = {
                'browserify': {
                    'source_filenames' : (
                        'js/entry-point.browserify.js',
                    ),
                    'output_filename': 'js/browserified.js',
                },
            }
        
        To suggest a feature or report a bug:
        https://github.com/j0hnsmith/django-pipeline-browserify/issues
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
