-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Grunt support #24
Comments
+1 |
The main problem with all of the docco - grunt modules out there is, that docco & docco-husky don´t export functions like 'normal' npm modules do. docco (and docco-husky) must be spawned. var doccoHusky = require('docco-husky');
doccoHusky(myConfigurationObject); So, before someone starts to build a docco-husky gruntplugin, docco-husky should export at least one function that Conclusion, this issue shouldn´t be about grunt support in the first place, it should be about exporting an 'in Node' usable object or function. |
I´ve seen that @vytch already implemented & pull requested this, shame on me for not checking the PRs ;) |
Hi yes I have done something, to make docco-husky compatible with grunt. I have tested it we can still use the module via command line. But I think it needs more work around how the parameters can be added via a grunt file. Vytch |
Been super busy. I'd like to take the pull request and make sure it's working with grunt and Yeoman and to @asciidisco 's point, I can certainly have the module.exports expose a single function. |
Hi I have done a first draft of a grunt-docco-husky. I am currently testing it on a small personal project. |
Just curious, right now I'm using grunt-exec to run the |
I did not know grunt-exec so thanks for sharing. That question could be extended to a lot of tasks. Now there is something I find a bit annoying, all grunt tasks have to be installed at the project level, and not globally. The good thing about grunt exec is that I can install a node module globally and all my projects can use it. |
Hi
Your project rocks!
I would like to use that with grunt.
I know there is already a grunt-docco available.
Are you planning to work on grunt-docco-husky any time soon?
Thanks
Vytch
The text was updated successfully, but these errors were encountered: