We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2035c84 commit 63530c1Copy full SHA for 63530c1
bit-docs.js
@@ -1,5 +1,7 @@
1
var tags = require("./tags/tags");
2
var processJavaScript = require("./process/javascript");
3
+var path = require("path");
4
+
5
module.exports = function(bitDocs){
6
// register your tags
7
bitDocs.register("tags", tags);
@@ -11,7 +13,7 @@ module.exports = function(bitDocs){
11
13
12
14
bitDocs.register("html", {
15
dependencies: dependencies,
- templates: __dirname+"/templates"
16
+ templates: path.join(__dirname, "templates")
17
});
18
-});
19
+};
test.js
@@ -1,3 +1,5 @@
+require("./bit-docs");
require("./process/process_test");
require("./tags/tags_test");
0 commit comments