conga-assets

Conga.js bundle for asset merging and minfication using connect-assetmanager

Usage no npm install needed!

<script type="module">
  import congaAssets from 'https://cdn.skypack.dev/conga-assets';
</script>

README

conga-assets

Overview

This is a bundle for the Conga.js framework which handles the merging and minification of javascript and css assets using the connect-assetmanager module.

Configuration

Example:

// config.yml
assets:

    # enable asset compilation
    enabled: true
    
    # should a version be appended
    appendVersion: true

    # version parameter name (/js/src.js?v=1234)
    versionParameter: v

    # version number to append to querystrings
    version: v1.0

    # templates to parse asset paths from
    paths:
        - demo-bundle:layout.jade
        - demo-bundle:chat/index.jade

Usage

To combine assets in your templates, use the provided assets() template helper.

asset(destination, assetType, sourceFiles)

Jade example:

# layout.jade
!= assets('/js/src.js', 'javascript', ['/js/user.js', '/js/jst.js', '/bundles/demo-bundle/js/*'])