2017-06-08 6 views
8

We are using JsDoc to create our document of reactjs pages. All comment we wrote as per the jsDoc rule but still it showing below message for some page:reactjsでJsDocの正確なエラーメッセージを取得するにはどうすればいいですか?

ERROR:Dを解析できません:\例を\ SRCレデューサー\ example.js \:予期しない

I am not getting the error in other pages, we wrote the comment same way but for some pages it is throwing above error. How can I get the exact error message and line number where it is failing?

答えて

2

How can I get the exact error message and line number where it is failing?

Command-line arguments to JSDoc JSDocのように、ログの詳細な情報を提供する必要があります--verboseオプションを提供トークン走る残念ながら、これはあなたに正確な行番号を与えません。

GitHubで開かれているリクエストはOption to print error stackです。あなたが推測しているように、これはまだ実装されていません。同じスレッドでiPherianによって投稿された回避策を使用することができます。この回避策は、行番号とエラーの列が発生します。

EDIT:JSDocのバージョン "3.5.0-DEV"(current development master)印刷ラインとエラーの列番号に特徴のよう

実装及び利用可能である起こります。現在の開発版をインストールした後...

npm install git+https://github.com/jsdoc3/jsdoc.git 

とJSのソース

​​

行番号と列番号を出力にプリントアウトされているとともに、エラーに対するJSDocのを実行している...

enter image description here

関連する問題