Skip to content

Commit e1308c2

Browse files
committed
some basics of the old theme working
0 parents  commit e1308c2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+36555
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
temp/
2+
node_modules/

bit-docs.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
var path = require("path");
2+
3+
module.exports = function(bitDocs){
4+
var pkg = require("./package.json");
5+
var dependencies = {};
6+
dependencies[pkg.name] = pkg.version;
7+
8+
bitDocs.register("html", {
9+
templates: path.join(__dirname, "templates"),
10+
dependencies: dependencies
11+
});
12+
}

0 commit comments

Comments
 (0)