Remove MaxTries variable #51

Merged
Vylpes merged 6 commits from feature/34-remove-max-tries into develop 2023-02-24 20:31:22 +00:00
2 changed files with 8 additions and 5 deletions
Showing only changes of commit bb9f092731 - Show all commits

2
app.ts
View file

@ -1,4 +1,4 @@
import randomBunny from "./src";
import randomBunny from "./dist";
async function app() {
const result = await randomBunny('rabbits', 'hot', 100);

View file

@ -1,11 +1,11 @@
{
"name": "random-bunny",
"version": "2.0.3",
"version": "2.0.5",
"description": "Get a random subreddit image url",
"license": "MIT",
"author": "Vylpes",
"main": "./dist/index",
"typings": "./dist",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"keywords": [
"rabbit",
"bunny",
@ -37,5 +37,8 @@
"eslint": "^7.17.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
},
"files": [
"dist"
]
}