Get was now added to the main export

This commit is contained in:
Martin Donnelly 2020-11-17 17:46:52 +00:00
parent 080f2f8bb6
commit 43a92a2b0a
2 changed files with 3 additions and 2 deletions

View File

@ -1,11 +1,11 @@
{
"name": "@rakh/utils",
"version": "2.0.2",
"version": "2.0.3",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"jsnext:main": "dist/es/index.js",
"scripts": {
"release": "vik patch -t",
"release": "node ./scripts/create-index.js && vik patch -t",
"clean": "rm -rf dist",
"prepare": "npm run clean && npm run compile",
"test": "jest --coverage && npm run compile",

View File

@ -3,6 +3,7 @@ export * from './arrayFromObj';
export * from './debounce';
export * from './distance';
export * from './extractFromObj';
export * from './get';
export * from './hasOwn';
export * from './hourFloor';
export * from './isEmpty';