Skip to content

Commit

Permalink
Merge pull request #62 from laxmanpokhrel/fix/missing-src
Browse files Browse the repository at this point in the history
fix: export from lib dir
  • Loading branch information
laxmanpokhrel authored Feb 25, 2024
2 parents 9092244 + 5e4048e commit 9d57bfd
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .release/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Improvements
- ts config added base url
- export from lib dir
62 changes: 31 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,37 +8,37 @@
},
"types": "./lib",
"exports": {
"./abbreviateCurrencyValue": "./src/abbreviateCurrencyValue",
"./areObjectsEqual": "./src/areObjectsEqual",
"./calculateAndInjectPercentageByMaxValue": "./src/calculateAndInjectPercentageByMaxValue",
"./calculateAndInjectPercentageBySum": "./src/calculateAndInjectPercentageBySum",
"./calculateSumOfKey": "./src/calculateSumOfKey",
"./containsBinaryData": "./src/containsBinaryData",
"./convertNestedKeysToObject": "./src/convertNestedKeysToObject",
"./countKeyOccurrences": "./src/countKeyOccurrences",
"./distributePercentageEqually": "./src/distributePercentageEqually",
"./distributePercentageEquallyWithRemainder": "./src/distributePercentageEquallyWithRemainder",
"./formatNumberToCommaString": "./src/formatNumberToCommaString",
"./getDifferenceObject": "./src/getDifferenceObject",
"./getFileExtension": "./src/getFileExtension",
"./getMinMax": "./src/getMinMax",
"./groupArrayOfObjectsByValueOfAKey": "./src/groupArrayOfObjectsByValueOfAKey",
"./intersectObjects": "./src/intersectObjects",
"./isJSONObject": "./src/isJSONObject",
"./markCheckedByStringMatch": "./src/markCheckedByStringMatch",
"./objectToFormDataWithFiles": "./src/objectToFormDataWithFiles",
"./omitKey": "./src/omitKey",
"./parseToBoolean": "./src/parseToBoolean",
"./partitionObjectsByKey": "./src/partitionObjectsByKey",
"./removeObjectFromArray": "./src/removeObjectFromArray",
"./scrollToComponent": "./src/scrollToComponent",
"./setKeysToValueInObjects": "./src/setKeysToValueInObjects",
"./setValueOfKeyForMatchingValuesOfAKey": "./src/setValueOfKeyForMatchingValuesOfAKey",
"./splitArrayIntoChunks": "./src/splitArrayIntoChunks",
"./strictIntersectObjects": "./src/strictIntersectObjects",
"./toggleObjectInArray": "./src/toggleObjectInArray",
"./uniqueValuesOfKey": "./src/uniqueValuesOfKey",
"./validateObjectsForKey": "./src/validateObjectsForKey"
"./abbreviateCurrencyValue": "./lib/abbreviateCurrencyValue",
"./areObjectsEqual": "./lib/areObjectsEqual",
"./calculateAndInjectPercentageByMaxValue": "./lib/calculateAndInjectPercentageByMaxValue",
"./calculateAndInjectPercentageBySum": "./lib/calculateAndInjectPercentageBySum",
"./calculateSumOfKey": "./lib/calculateSumOfKey",
"./containsBinaryData": "./lib/containsBinaryData",
"./convertNestedKeysToObject": "./lib/convertNestedKeysToObject",
"./countKeyOccurrences": "./lib/countKeyOccurrences",
"./distributePercentageEqually": "./lib/distributePercentageEqually",
"./distributePercentageEquallyWithRemainder": "./lib/distributePercentageEquallyWithRemainder",
"./formatNumberToCommaString": "./lib/formatNumberToCommaString",
"./getDifferenceObject": "./lib/getDifferenceObject",
"./getFileExtension": "./lib/getFileExtension",
"./getMinMax": "./lib/getMinMax",
"./groupArrayOfObjectsByValueOfAKey": "./lib/groupArrayOfObjectsByValueOfAKey",
"./intersectObjects": "./lib/intersectObjects",
"./isJSONObject": "./lib/isJSONObject",
"./markCheckedByStringMatch": "./lib/markCheckedByStringMatch",
"./objectToFormDataWithFiles": "./lib/objectToFormDataWithFiles",
"./omitKey": "./lib/omitKey",
"./parseToBoolean": "./lib/parseToBoolean",
"./partitionObjectsByKey": "./lib/partitionObjectsByKey",
"./removeObjectFromArray": "./lib/removeObjectFromArray",
"./scrollToComponent": "./lib/scrollToComponent",
"./setKeysToValueInObjects": "./lib/setKeysToValueInObjects",
"./setValueOfKeyForMatchingValuesOfAKey": "./lib/setValueOfKeyForMatchingValuesOfAKey",
"./splitArrayIntoChunks": "./lib/splitArrayIntoChunks",
"./strictIntersectObjects": "./lib/strictIntersectObjects",
"./toggleObjectInArray": "./lib/toggleObjectInArray",
"./uniqueValuesOfKey": "./lib/uniqueValuesOfKey",
"./validateObjectsForKey": "./lib/validateObjectsForKey"
},
"keywords": [
"utils",
Expand Down

0 comments on commit 9d57bfd

Please sign in to comment.