Skip to content

Commit 23843ac

Browse files
committed
Switched to module.exports for consistency throughout package.
1 parent d20ddae commit 23843ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/doxdox.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ var fs = require('fs'),
66
Promise = require('promise'),
77
utils = require('../lib/utils');
88

9-
exports.templates = {
9+
module.exports.templates = {
1010
bootstrap: require('../templates/bootstrap.hbs'),
1111
markdown: require('../templates/markdown.hbs'),
1212
dash: utils.buildDashDocSet
1313
};
1414

15-
exports.parseInput = function (input, config, pkg) {
15+
module.exports.parseInput = function (input, config, pkg) {
1616

1717
var files = [],
1818
stat;
@@ -52,7 +52,7 @@ exports.parseInput = function (input, config, pkg) {
5252

5353
};
5454

55-
exports.parseScripts = function (scripts, config, pkg) {
55+
module.exports.parseScripts = function (scripts, config, pkg) {
5656

5757
var files = [],
5858
content,

0 commit comments

Comments
 (0)