Skip to content

Release 1.3.0

Choose a tag to compare

@kefniark kefniark released this 23 Jul 15:49
· 25 commits to develop since this release
793f87f

Description

  • Few Chores
    • Update Tatoeba Dataset
    • Update Node to 18.x
    • Update Dependencies (typescript, esbuild, ...)
  • Tuning
    • Increase the amount for chunk being analyzed for long text #14
    • Change a bit verbose log to be more readable
detect('これは日本語です.', { verbose: true })
  • Few Fixes
    • Fix a compatibility issue between Deno and esbuild #12
    • Fix an issue with ESM, the library is now exported in 2 flavor, the node ESM and the browser ESM. This is managed in package.json #13
"exports": {
    ".": {
      "require": "./dist/tinyld.normal.node.js",
      "import": "./dist/tinyld.normal.node.mjs",
      "browser": "./dist/tinyld.normal.browser.js"
    },
    "./light": {
      "require": "./dist/tinyld.light.node.js",
      "import": "./dist/tinyld.light.node.mjs",
      "browser": "./dist/tinyld.light.browser.js"
    }
},