Skip to content

Releases: sricharankrishnan/vowelz

Version 2.0.0

04 Feb 13:14
Compare
Choose a tag to compare

[Fix] Breaking Changes

  • package will now have a traditional CommonJS import style
  • changes made to test files for the import
  • all tests are passing
  • also tested the updates made with 'npm link'
  • updates made to ReadME file as well

Version 1.2.4

04 Feb 12:03
Compare
Choose a tag to compare

[build] Unit Tests

  • created all required unit tests with jests for the package. all
    critical methods were covered in these tests
  • removed/corrected some methods in the package

Version 1.1.3

03 Feb 07:42
Compare
Choose a tag to compare

[build] Unit Testing

  • created unit test for the following

    1. get-count-of-unique-vowels
    2. accepts-only-string-arg
    3. remove-all-vowels-from-string
  • additionally, correct a method in the package as well by adding
    'toLowerCase()' when checking for unique vowels in an input string

Version 1.1.2

03 Feb 04:45
Compare
Choose a tag to compare

[build] Added New Methods

  • vowelEncryption: recevies a string and then encrypts the vowels with
    some predefined special characters

  • replaceVowelsWithCharacter: receives a string and a character, the
    method would replace every vowel present in the string with the
    character

  • countAllVowels: counts the number of vowels in a string and return the
    counts in the form of an object

Updated Pkg Version

19 Jan 13:57
Compare
Choose a tag to compare

Initial Release

18 Jan 13:49
6f55ef5
Compare
Choose a tag to compare

[feat] Package Build

  • using babel to transpile from es6 to es5
  • created required directory structure for package distribution
  • did some testing with npm link
  • root index.js file to help import the actual package