Skip to content

Commit 1ea6f11

Browse files
committed
Fix Hogan module name. How did this ever work?
1 parent 1b8946a commit 1ea6f11

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/engine-react/lib/engine_react.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const path = require('path');
1414
const React = require('react');
1515
const ReactDOMServer = require('react-dom/server');
1616
const Babel = require('babel-core');
17-
const Hogan = require('hogan.js');
17+
const Hogan = require('hogan');
1818
const beautify = require('js-beautify');
1919
const cheerio = require('cheerio');
2020
const _require = require;
@@ -215,7 +215,9 @@ var engine_react = {
215215
* each with two properties: path, and content
216216
*/
217217
addOutputFiles(paths, patternlab) {
218-
return [];
218+
return [
219+
220+
];
219221
},
220222

221223
/**

0 commit comments

Comments
 (0)