🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

grunt-swig2

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-swig2

Grunt task for rendering Swig templates.

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

grunt-swig2

Task for rendering Swig templates

Build Status Dependency Status devDependency Status NPM version

Getting started

This plugin requires Grunt ~0.4.2

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-swig2 --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks("grunt-swig2");

swig task

Run this task with the grunt swig command.

Task targets, files and options may be specified according to the grunt Configuring tasks guide.

Options

data

Type: Object, Array, Function Default: {}

Locals that will be passed to each template when rendering. If this is a function, then it will be called once per target with no args. If this is an array, then the values will be merged into a single object.

filters

Type: Object Default: {}

Object containing custom Swig filters, where the key is the filter name and the value is the filter function. Example:

options: {
    filters: {
        // Makes strings more exciting
        makeExciting: function( input ) {
            return input + "!!!";
        }
    }
}

tags

Type: Object Default: {}

Object containing custom Swig tags, where the key is the tag name and the value is a object that must contain parser and compiler functions. ends and blockLevel flags may also be passed, but are optional. Also, you may pass a ext key as well, which will add a Swig extension with the name of this tag.

Example:

options: {
    tags: {
        tagName: {
            parser: function( str, line, parser, types, options ) {
                // ...
            },
            compiler: function( compiler, args, content, parents, options, blockName ) {
                // ...
            },
            ends: true,
            blockLevel: true,
            ext: anythingHere
        }
    }
}

swigOptions

Type: Object Default: {}

A hash of Swig options.

Keywords

gruntplugin

FAQs

Package last updated on 26 Dec 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts