textlint-ja / textlint-rule-preset-ja-technical-writing

技術文書向けのtextlintルールプリセット
https://textlint-ja.github.io/textlint-rule-preset-ja-technical-writing/
MIT License
431 stars 10 forks source link

Remove interop-require #47

Closed azu closed 5 years ago

azu commented 5 years ago

interopRequire は動的なrequireになるため、nowとかで静的な解決できなくて問題が起きる。 そのため、単純にimportしてから割り当てる形にする。 どちらにしても全て読み込むのは同じなのでimportに変更する

azu commented 5 years ago
import sentencelength from "textlint-rule-sentence-length"
module.exports = { "sentence-length": sentencelength }

にしていくだけ

azu commented 5 years ago

https://github.com/textlint/textlint/pull/619 書いた