New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gulp-consolidate

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-consolidate

Template engine consolidation for gulp

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8.4K
decreased by-31.28%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-consolidate NPM version Build Status Dependency Status

Template engine consolidation for gulp using consolidate.js.

Usage

First, install gulp-consolidate as a development dependency:

npm install --save-dev gulp-consolidate

Then, add it to your gulpfile.js:

var consolidate = require("gulp-consolidate");

gulp.src("./src/*.html", { read : false})
	.pipe(consolidate("swig", {
		msg: "Hello Gulp!"
	}))
	.pipe(gulp.dest("./dist"));

API

consolidate(engine, data[, options])

engine

Type: String

The consolidate.js supported template engine used to render each file.

consolidate('swig');

Note: The template engine must also be installed via npm.

npm install --save-dev swig
data

Type: Object|Function

The data to use to render the templates.

consolidate('swig', {
	msg: "Hello World"
});

If this argument is a function, it will be called with the file as the only argument to get the template data.

consolidate('swig', function (file) {
	return {
		BASE_URL : path.relative(file.path, pathToBase)
	};
});
options

Type: Object

Additional options.

options.useContents

Type: Boolean Default: false

consolidate('swig', data, { useContents : true });

Most times, you will want to render templates that include other files. In order to do so, the filenames will be passed to consolidate rather than the file contents.

If you would rather pass the file contents to consolidate, set the useContents option to true.

License

MIT License

Keywords

FAQs

Package last updated on 01 Mar 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc