Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pick export #20

Merged
merged 2 commits into from
Aug 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 8.2.1 (03.08.2021)

Fixed [pick](./lib/pick.ts) export.


## 8.2.0 (22.07.2021)

Added [capitalize](./lib/capitalize.ts).
Expand Down
1 change: 1 addition & 0 deletions lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export { default as isMobile } from './is-mobile';
export { default as kebabToCamel } from './kebab-to-camel';
export { default as objectToQueryString } from './object-to-query-string';
export { default as omit } from './omit';
export { default as pick } from './pick';
export { default as queryStringToObject } from './query-string-to-object';
export { default as rgbToHex } from './rgb-to-hex';
export { default as storage } from './storage';
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@funboxteam/diamonds",
"version": "8.2.0",
"version": "8.2.1",
"description": "A shiny pile of typed JS helpers for everyday use",
"scripts": {
"lint": "eslint --cache -c .eslintrc.js --ext .ts lib",
Expand Down