Skip to content

Releases: VitorLuizC/normalize-text

Version 2.5.0

13 Feb 22:10
Compare
Choose a tag to compare
  • ✨ Provide tagged string template function for normalizeWhiteSpaces.

    normalizeWhiteSpaces`
      Now you can write long texts and can even line
      break them in the code without having to rely on
      the uncanny ' + \n
    `
    //=> "Now you can write long texts and can even line break them in the code without having to rely on the uncanny ' + \n"

    Thanks to @phuvinhbmt for PR #21.

Version 2.4.1

31 Aug 00:27
Compare
Choose a tag to compare
  • 🐛 Add types entry on package's exports in order to fix a nodenext module resolution error.

    Thanks to @rayzr522 for PR #19.

  • ⬆️ Upgrade devDependencies;

  • 📝 Fix README.md bundlephobia badges;

Version 2.4.0

24 Feb 20:48
Compare
Choose a tag to compare
  • ⬆️ Update dependencies and devDependencies;
  • 📦 Add support to NodeJS ESM (.mjs or using "type": "module");

Version 2.3.3

31 Aug 03:24
Compare
Choose a tag to compare

Version 2.3.3

Changes

  • 🏷 Fix exceptions type in normalizeName's JSDoc.
  • ⬆️ Upgrade devDependencies.

Version 2.3.2

25 Feb 03:28
Compare
Choose a tag to compare

Version 2.3.2

Changes

  • 🐛 Change substitution pattern that was too wide, to preserve letters like ß in normalizeDiacritics.
    Thanks to @chocolateboy for issue #9.
  • ⬆️ Upgrade @bitty/pipe.
    • It just reduces our bundle size a bit.
  • ⬆️ Upgrade devDependencies.

Version 2.3.0

17 Aug 14:54
Compare
Choose a tag to compare

Version 2.3.0

Changes

  • ⚡ Bundle @bitty/pipe in UMD bundles and use as external in ESM and CommonJS.
  • 🏗 Use Rollup.js instead of bili (a Rollup.js abstraction) to bundle sources.
  • 🏗 Transpile sources and unit tests with TypeScript.
  • 🔥 Remove rollup-plugin-typescript2 and ts-jest.
  • ⬆️ Upgrade devDependencies.

Version 2.2.1

17 Aug 14:48
Compare
Choose a tag to compare

Version 2.2.1

Changes

  • 🐛 Fix ESM bundle not found.

    Thanks to @saculbr for PR #8.

Version 2.2.0

17 Aug 14:46
Compare
Choose a tag to compare

Version 2.2.0

Changes

  • ✨ Add source-maps for transpiled JavaScript modules and type declarations.

Version 2.1.4

17 Aug 14:45
Compare
Choose a tag to compare

Version 2.1.4

Changes

  • ⬆️ Upgrade devDependencies.
  • 🐛 Fix a small type error checking if normalize method exists in String constructor.

Version 2.1.3

17 Aug 14:42
Compare
Choose a tag to compare

Version 2.1.3

Changes

  • ⚡ Add pure annotations (/*#__PURE__*/) on pipe calls.