Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JoShMiQueL committed Jun 4, 2021
1 parent 2755d97 commit 28a74a7
Show file tree
Hide file tree
Showing 23 changed files with 11,955 additions and 13 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/node_modules
/lib
package-lock.json
yarn.lock
yarn.lock
.env
19 changes: 19 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"arrowParens": "always",
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 120,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false,
"vueIndentScriptAndStyle": false
}
4 changes: 4 additions & 0 deletions cache.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"session": "556D640361414113971EC42251010E7F",
"updatedAt": 1621814198737
}
55 changes: 55 additions & 0 deletions graph.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { getPokemons } from "./src/getPokemons";

export const xd = async () => console.log(await getPokemons());
import { Paladins } from './src/Paladins'
import { Smite } from './src/Smite'
export { Smite, Paladins }
16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,27 @@
"postversion": "git push && git push --tags",
"path": "npm version patch -m 'Upgrade to %s' && npm publish",
"minor": "npm version minor -m 'Upgrade to %s' && npm publish",
"major": "npm version major -m 'Upgrade to %s' && npm publish"
"major": "npm version major -m 'Upgrade to %s' && npm publish",
"build": "shx rm -r lib && tsc",
"dev": "npm run build && shx cp cache.json lib/cache.json"
},
"author": "JoShMiQueL",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.168",
"@types/md5": "^2.3.0",
"@types/node": "^15.0.2",
"shx": "^0.3.3",
"ts-node": "^9.1.1",
"tsc-prog": "^2.2.1",
"typescript": "^4.2.4"
},
"dependencies": {
"axios": "^0.21.1"
"axios": "^0.21.1",
"chalk": "^4.1.1",
"dotenv": "^9.0.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"moment": "^2.29.1"
}
}
Loading

0 comments on commit 28a74a7

Please sign in to comment.