Skip to content

Commit

Permalink
Merge pull request #43 from vodyani/feature/add-object-hash
Browse files Browse the repository at this point in the history
Feature/add object hash
  • Loading branch information
ChoGathK authored Sep 26, 2022
2 parents 2eb066e + b986ade commit b53e1bd
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 20 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [8.5.2](https://github.com/vodyani/utils/compare/v8.5.1...v8.5.2) (2022-09-07)


### Bug Fixes

* delete unnecessary types ([768cd62](https://github.com/vodyani/utils/commit/768cd62ff21aef09fb69fecab35b0ce9ef0d4040))
* simplify naming and method calls ([57fc440](https://github.com/vodyani/utils/commit/57fc440e997ad1d8f4a2e67c128e8c89a2faed5d))

## [8.5.2-beta.1](https://github.com/vodyani/utils/compare/v8.5.1...v8.5.2-beta.1) (2022-09-07)


Expand Down
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ npm install @vodyani/utils

## Getting started

- [使用文档 📚](https://vodyani.vercel.app/docs/other/utils)
- [Documentation 📚](https://vodyani.vercel.app/en/docs/other/utils)
- [使用文档 📚](https://vodyani.netlify.app/docs/other/utils)
- [Documentation 📚](https://vodyani.netlify.app/en/docs/other/utils)

## Questions

Expand Down
40 changes: 25 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vodyani/utils",
"license": "MIT",
"version": "8.5.2-beta.1",
"version": "8.5.2",
"author": "ChoGathK",
"description": "🏃🏻‍♀️ utils provides common utility functions used in server-side development.",
"homepage": "https://github.com/vodyani/utils#readme",
Expand Down Expand Up @@ -60,8 +60,9 @@
]
},
"dependencies": {
"deepmerge-ts": "4.2.1",
"lodash": "4.17.21"
"deepmerge-ts": "4.2.2",
"lodash": "4.17.21",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "16.3.0",
Expand All @@ -70,6 +71,7 @@
"@types/jest": "27.5.2",
"@types/lodash": "4.14.182",
"@types/node": "16.11.56",
"@types/object-hash": "^2.2.1",
"@types/supertest": "2.0.12",
"@vodyani/eslint-config": "^1.1.0",
"husky": "7.0.4",
Expand Down
3 changes: 3 additions & 0 deletions src/common/declare.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import * as toHash from 'object-hash';

export { toHash };
2 changes: 2 additions & 0 deletions src/common/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from './declare';
export * from './interface';
File renamed without changes.

0 comments on commit b53e1bd

Please sign in to comment.