Skip to content

Commit

Permalink
Release 2.0.0 (#15)
Browse files Browse the repository at this point in the history
* auto capitalize function

* currency format common function

* initial commit

* added more util functions

* added currency formatter

* documentation

* added date and common utils

* add documentation also revise the functionality of function

* removed redundant currency and capitalize files

* validations for data types in all methods

* removed else statements

* slight change

* added more utils

* Release V1.1.0

* Config issue (#11)

* Bump lodash from 4.17.15 to 4.17.19

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.15...4.17.19)

Signed-off-by: dependabot[bot] <[email protected]>

* Release V1.2.0 (#9)

* auto capitalize function

* currency format common function

* initial commit

* added more util functions

* added currency formatter

* documentation

* added date and common utils

* add documentation also revise the functionality of function

* removed redundant currency and capitalize files

* validations for data types in all methods

* removed else statements

* slight change

* added more utils

* Release V1.1.0

Co-authored-by: vikrantrana1337 <[email protected]>
Co-authored-by: eklavyagehlaut <[email protected]>
Co-authored-by: pavan_bharatpe <[email protected]>
Co-authored-by: krishcdbry <[email protected]>

* Bump elliptic from 6.5.2 to 6.5.3 (#10)

Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.2 to 6.5.3.
- [Release notes](https://github.com/indutny/elliptic/releases)
- [Commits](indutny/elliptic@v6.5.2...v6.5.3)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* config changes

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: krishpe <[email protected]>
Co-authored-by: vikrantrana1337 <[email protected]>
Co-authored-by: eklavyagehlaut <[email protected]>
Co-authored-by: krishcdbry <[email protected]>
Co-authored-by: Pavan Kumar Patruni <[email protected]>

* isIOS valiation check added (#12)

* isIOS valiation check added

* Minor fixes

Co-authored-by: krishcdbry <[email protected]>

* Typescript release 2.0.0 (#14)

* feat: typescript and tree shaking

- project convert into typescript
- Tree shaking apply

* husky added

* semantic-release added

* versionrc added

* commitlint added

* package.json update

* commitlint file added

* husky change

* husky change

* d

* dfsdf

* package.json update

* rollup update

* refactor: project structure change

* chore: change version

Co-authored-by: vikrantrana1337 <[email protected]>
Co-authored-by: eklavyagehlaut <[email protected]>
Co-authored-by: krishpe <[email protected]>
Co-authored-by: pavan_bharatpe <[email protected]>
Co-authored-by: krishcdbry <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Pavan Kumar Patruni <[email protected]>
  • Loading branch information
8 people authored Mar 21, 2021
1 parent 9e945f8 commit 4880c61
Show file tree
Hide file tree
Showing 34 changed files with 13,908 additions and 512 deletions.
3 changes: 3 additions & 0 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["@commitlint/config-conventional"]
}
1 change: 1 addition & 0 deletions .config/husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions .config/husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install commitlint --edit $1
4 changes: 4 additions & 0 deletions .config/husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run lint
5 changes: 3 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist/**/*
webpack.config.js
lib/**/*
example
node_modules
20 changes: 9 additions & 11 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
{
"env": {
"browser": true,
"jest": true,
"es6": true
},
"parser": "babel-eslint",
"plugins": ["import"],
"extends": "eslint:recommended",
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"no-console": 0,
"no-eval": "error",
"import/first": "error"
"@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/explicit-function-return-type": "error"
}
}
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules
dist
yarn.lock
package-lock.json
package-lock.json
example
lib
50 changes: 50 additions & 0 deletions .versionrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"hidden": false,
"section": "🚀 Features"
},
{
"type": "fix",
"hidden": false,
"section": "🐛 Bug Fixes"
},
{
"type": "chore",
"hidden": false,
"section": "🛠 Maintenance"
},
{
"type": "docs",
"hidden": false,
"section": "📃 Documentation"
},
{
"type": "refactor",
"hidden": false,
"section": "👨‍🔧 Refactors"
},
{
"type": "perf",
"hidden": false,
"section": "🏎 Performance"
},
{
"type": "spec",
"hidden": false,
"section": "🤖 Specification"
},
{
"type": "revert",
"section": "🔄 Reverts",
"hidden": false
}
],
"issuePrefixes": ["#"],
"issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}",
"commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commit/{{hash}}",
"compareUrlFormat": "{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}",
"userUrlFormat": "{{host}}/{{user}}"
}
1 change: 0 additions & 1 deletion dist/lib.js

This file was deleted.

5 changes: 5 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export { default as CommonUtils } from './CommonUtils/index';
export { default as StorageUtils } from './StorageUtils/index';
export { default as Geolocation } from './Geolocation/index';
export { default as CurrencyUtils } from './CurrencyUtils/index';
export { default as UrlUtils } from './UrlUtils/index';
5 changes: 5 additions & 0 deletions lib/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export * from './CommonUtils/index';
export * from './StorageUtils/index';
export * from './Geolocation/index';
export * from './CurrencyUtils/index';
export * from './UrlUtils/index';
Loading

0 comments on commit 4880c61

Please sign in to comment.