Skip to content
This repository was archived by the owner on Apr 24, 2024. It is now read-only.

v2.5.0

Choose a tag to compare

@hcodes hcodes released this 28 Jun 19:48
· 291 commits to master since this release
  • Replace npm module eyo to eyo-kernel
  • Output warnings of duplicate words in dictionaries
  • Update deps in package.json
  • Simplified regular expressions in words in the dictionary

Before, <= 2.4.0:

[
  "someword1", // someword1 = someword1
  "Someword2", // Someword2 = Someword2
  "/some(w|W)ord[23]/", // some(w|W)ord[23] = some(w|W)ord[23]
  "/Some(w|W)ord/" // Some(w|W)ord = Some(w|W)ord
]

After, 2.5.0:

[
  "someword1", // someword1 = someword1 and Someword1
  "Someword2", // Someword2 = Someword2
  "some(w|W)ord[23]", // some(w|W)ord[23] = some(w|W)ord[23] and Some(w|W)ord[23]
  "Some(w|W)ord" // Some(w|W)ord = Some(w|W)ord
]