Socket
Socket
Sign inDemoInstall

component-render-hogan

Package Overview
Dependencies
2
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.0 to 0.1.1

5

HISTORY.md

@@ -0,1 +1,6 @@

0.1.1 / 2013-08-17
==================
* Fixed local loading
0.1.0 / 2013-08-16

@@ -2,0 +7,0 @@ ==================

4

index.js

@@ -8,2 +8,3 @@ 'use strict';

var debug = require('debug')('component-render-hogan');
var path = require('path');
var fs = require('fs');

@@ -20,3 +21,4 @@

if (program.local) {
local = require(program.local);
var resolve_path = path.resolve(program.local);
local = fs.existsSync(resolve_path) ? require(resolve_path) : require(resolve_path + '.json');
}

@@ -23,0 +25,0 @@

{
"name": "component-render-hogan",
"version": "0.1.0",
"version": "0.1.1",
"description": "Hogan.js template engine for component-render plugin",

@@ -5,0 +5,0 @@ "keywords": [

# component-render-hogan
[![Build Status](https://travis-ci.org/Frapwings/component-render-hogan.png?branch=master)](https://travis-ci.org/Frapwings/component-render-hogan)
[Hogan.js](http://twitter.github.io/hogan.js/) template engine for [component-render](https://github.com/Frapwings/component-render) plugin

@@ -4,0 +6,0 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc