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 9385ae5 commit efb07fcCopy full SHA for efb07fc
package.json
@@ -4,7 +4,7 @@
4
"version": "0.0.6",
5
"license": "MIT",
6
"dependencies": {
7
- "doxdox": "0.0.18",
+ "doxdox": "0.1.0",
8
"extend": "2.0.0"
9
},
10
"keywords": [
tasks/doxdox.js
@@ -30,7 +30,7 @@ module.exports = function (grunt) {
30
31
if (!config.package) {
32
33
- config.package = utils.findPackage(input);
+ config.package = utils.findPackagePath(input);
34
35
}
36
@@ -60,7 +60,8 @@ module.exports = function (grunt) {
60
61
doxdox.parseInput(
62
path.normalize(path.resolve(input)),
63
- config
+ config,
64
+ config.package
65
).then(function (content) {
66
67
fs.writeFileSync(output, content, 'utf8');
0 commit comments