- Final release, no more updates feature wise, only maintenance and bug fixes.
- Fixed the CI pipeline checks so version can never be the same.
- Reverted the tsconfig.json to decrease file size.
- Fix incorrectly JS file while being TS file, fixed with #! ts-node.
- Added callbacks for the v-listener class.
- Added
isRegExp
andisDate
to the 'core'(soon to be) module. - Updated the documentation accordingly.
- Updated the dev dependencies.
- Added verbose option to CLI to print out the full stack trace of actions/errors.
- Fix where check version would check on dependencies instead version in the validatees package.json, while it cannot install itself.
- Fix where version check was not working correctly.
- Removed uglify-files.js as it was not being used.
- A shell environment is now available to try out the built in functions.
- Updated the check-version to check on the dependencies only.
- Fix where
-c -h
would run--check
instead ofhelp
for the check command. - Updated documentation regarding the CLI.
- Now displays the help message when no command is provided instaed of throwing an error.
- Fix where version-check is not pushed to NPM due to being in
.npmignore
.
- You are now able to run CLI commands using npx.
- Learned a bit about how to use
npx
and how it relates to the package itself. - Updated the docs accordingly.
- Updated the devDependencies to the latest versions.
- CLI: Added a
--version
flag to the CLI. - CLI: Added a
--help
flag to the CLI. - CLI: Added a
--exit
flag to the CLI. - CLI: Added a
--check
flag to the CLI.
- Commit to try to fix
npx validatees-version-check
. - Remove the uglify since it's not very effective.
- Patched the missing export of isValidEmail function.
- Made check-version file for checking the version of the package within the CI.
- Uglify function to reduce package size.
- Made some functions easier to use with typescript.
- TS compiler will not complain when checking isNullish or isFalsy anymore.
- Updated the CI files to make use of the correct order, no publish when the tests, lint or build fail.
- Updated the readme to display seperately for npm and github.
- Patched index file to include
isValidDate
function.
- Patched index files to export all functions.
- Added
isValidUrl
function.
- Added
isValidEmail
function. - Added
isValidPassword
function. - Updated docs to navigate in the readme.
Due to many updates in previous versions, we skipped 0.4.0 and went straight to 0.5.0.
- Added
isUnique
function. - Added
isExtendable
function. - Updated documentation accordingly.
Due to many updates in previes minor version, we skipped 0.2.0 and went straight to 0.3.0.
- Added
isBoolean
function. - Added
isDate
function. - Added VListener class validator.
- Added
isDeepMatch
function. - Updated documentation.
- Added
isTruthy
function. - Added
isTruthyExtended
function. - Added
isNullish
function. - Added
isString
function. - Added
isNumber
function. - Added
isFalsy
function. - Added
isFalsyExtended
function. - Added
isSoftMatch
function.