-
Notifications
You must be signed in to change notification settings - Fork 309
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
openapiのコード生成を行った #613
openapiのコード生成を行った #613
Conversation
openapiのコード生成を行った refs VOICEVOX#608 VOICEVOX#610
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
手元のgeneratorだと以前実行したものとバージョンが違ってるのでやはりgeneratorのバージョン違いが原因なようですね。
> $(npm bin)/openapi-generator-cli version
5.3.0
新しく生成したものだとpauseMora周りでビルドエラーになってしまっているのでそこも直してます。
一応ツールはREADMEに書いてあるとおりnpm ciでインストールしたものですが、この場合どうすればよいですかね?
5.3.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
やはりgeneratorのバージョンが上がってるようですね。
@@ -43,7 +43,7 @@ export interface AccentPhrase { | |||
* @type {Mora} | |||
* @memberof AccentPhrase | |||
*/ | |||
pauseMora?: Mora; | |||
pauseMora?: Mora | null; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nullが追加されてしまっている
なんでバージョンが違うようになるのかわからないんですよねー・・・ openapi-generator-cli のパッケージはこちらっぽいです 書いてることを読んだ感じ、 |
たぶんそこまで大々的に変わることはないので、5.3.0で固定しちゃいましょうか! |
設定追加して固定化させました |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
ちょっと自信ないですが、問題が起きたらまた修正で良いのかなと楽観しています。
openapi周りは深い知識持っている方がおらずよくわからないのが本音なので、テスト通ったらえいやでマージしちゃおうと思います。 |
内容
#610 で生成したコードの差分がなんか多すぎる気がしたため、一度openapiのコード生成のみをレビューしていただきたくPR作ります
関連 Issue
refs #610 #608