You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
## Changelog
2
2
3
+
# v0.8.8
4
+
Bugfixes:
5
+
- You can now use the template with grunt or simply use the module path as for the template parameter for jsdoc (https://github.com/otris/jsdoc-tsd/issues/1)
6
+
- The description of an jsdoc item was not added if the @description-annotation was omitted
expect(methodDeclaration.jsDocComment).to.eq("My long description\nfirst line\nsecond line\nthird line\n@param myParamter My string parameter");
23
+
expect(methodDeclaration.jsDocComment).to.eq("My long description\nfirst line\nsecond line\nthird line\n@param myParamter My string parameter\n@returns My return value");
expect(functionDeclaration.jsDocComment).to.eq("my module function\n@param param1 first param\n@param param2 second param");
36
+
expect(functionDeclaration.jsDocComment).to.eq("my module function\n@param param1 first param\n@param param2 second param\n@returns function return value");
37
37
});
38
38
39
39
it("should create a number member of an module",()=>{
0 commit comments