Skip to content

Commit

Permalink
fix hogan dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Filirom1 committed Oct 7, 2012
1 parent dc81a4a commit 42349cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/engines/hogan.js
@@ -1,5 +1,5 @@
var jst = require('../index.js')
, hogan = require('hogan');
, hogan = require('hogan.js');

// Returns a string of js with the compiled template
module.exports = function( options, nm, file_contents ){
Expand Down
6 changes: 3 additions & 3 deletions package.json
@@ -1,11 +1,11 @@
{
"author": "wookiehangover <sam@quickleft.com>",
"contributors":[
"contributors": [
"filirom1 <filirom1@gmail.com>"
],
"name": "universal-jst",
"description": "Pre-compiled JavaScript Templates",
"version": "1.0.2",
"version": "1.0.3",
"licenses": [
{
"type": "MIT",
Expand All @@ -26,7 +26,7 @@
"glob": "~3.1.9",
"nopt": "~1.0.10",
"dustjs-linkedin": "~0.4.0",
"hogan": "~1.0.5-dev"
"hogan.js": "~2.0.0"
},
"devDependencies": {
"vows": "~0.6.2"
Expand Down
2 changes: 1 addition & 1 deletion test/universalJstTest.js
Expand Up @@ -4,7 +4,7 @@ var vows = require('vows'),
_ = require('underscore'),
join = require('path').join,
Handlebars = require('handlebars'),
hogan = require('hogan'),
hogan = require('hogan.js'),
dust = require('dustjs-linkedin'),
jqtpl = require('jqtpl'),
vm = require('vm'),
Expand Down

0 comments on commit 42349cd

Please sign in to comment.