2023-05-26のJS: wrangler v3.0.0、playwright v1.34.0、TypeScript 5.2の予定(変換プラグイン) #1085
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
wrangler 3.0.0リリースされました
wrangler publish
がwrangler deploy
にリネームされています。また、wrangler 2.0でMiniflareを同梱していましたが、
3.0では
wrangler dev
でMiniflareとworked
runtimeを使ったローカル環境での開発をデフォルトに変更しています。playwright v1.34.0リリースがリリースされました。
Node.js 14のサポート終了、
playwright
と@playwright/test
を両方インストールしてる場合にnpx playwright test
が動かなくなるように変更されています。また、UIモードでテストのステップを表示できるように、
testProject.teardown
プロパティのサポート、locator.and()
の追加など行われています。TypeScript 5.2で取り組む予定のIssueが公開されています。
ECMAScript ProposalのDecorator Metadataや
using
の対応、明示的に型を定義せずに推論させるpartial type argument inferenceを扱う
_
の追加、tsc
コマンドで変換プラグインを扱う仕組みの追加などが検討されています。TypeScriptの出力に変換を加えるような仕組みはttypescriptやTS Patchなどが
tsc
をラップする形で行っていました。tsc
のプラグインとして同様のケースができないかを検討しているようです。また、並列解析でのパフォーマンス改善などに取り組む予定となっています。