Skip to content

Commit

Permalink
(fix): getJSONFilesForDir -> getJSONFilesForPath (#68)
Browse files Browse the repository at this point in the history
Signed-off-by: norbert-kulus-arianelabs <[email protected]>
  • Loading branch information
norbert-kulus-arianelabs authored May 20, 2024
1 parent b9c9194 commit 731aacc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,6 @@ dist

# TernJS port file
.tern-port

# Bundle
lib
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hashgraph/hedera-nft-sdk",
"version": "3.1.1",
"version": "3.1.2",
"description": "NFT SDK for Hedera Hashgraph",
"author": "Michiel Mulders",
"license": "Apache License",
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/files.browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ export const readFiles = (_: string, __: string[]): { filename: string; filedata
* @param dir Absolute path to folder you want to validate
* @returns An array of filenames with extension
*/
export const getJSONFilesForDir = (_: string): string[] => {
export const getJSONFilesForPath = (_: string): string[] => {
throw new Error('Not supported in browser.');
};

0 comments on commit 731aacc

Please sign in to comment.