Skip to content

Commit

Permalink
fix: bump all deps
Browse files Browse the repository at this point in the history
Test Plan: CI is green :)

Reviewers: 

Pull Request: #74
  • Loading branch information
Coobaha authored May 19, 2023
1 parent 2a6e242 commit 4c6aca7
Show file tree
Hide file tree
Showing 5 changed files with 443 additions and 217 deletions.
6 changes: 2 additions & 4 deletions generator/gen.bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import yargs from 'yargs';
// @ts-ignore
import { hideBin } from 'yargs/helpers';
import gen from './gen';
import glob from 'glob';
import { promisify } from 'util';
const resolveGlobFiles = promisify(glob);
import { glob } from 'glob';

yargs(hideBin(process.argv))
.command<{ files: string }>(
Expand All @@ -22,7 +20,7 @@ yargs(hideBin(process.argv))
.demandOption(['files']);
},
async (argv) => {
const files = await resolveGlobFiles(argv.files);
const files = await glob(argv.files);

await gen({ files });
},
Expand Down
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,36 +9,36 @@
"dependencies": {
"@types/json-schema": "^7.0.11",
"crypto-js": "^4.1.1",
"glob": "^8.0.3",
"glob": "^10.2.5",
"json-schema-merge-allof": "^0.8.1",
"json-schema-traverse": "^1.0.0",
"typescript-json-schema": "^0.54.0",
"yargs": "^17.6.0"
"typescript-json-schema": "^0.56.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@fastify/swagger": "^8.0.0",
"@fastify/swagger-ui": "^1.1.0",
"@fastify/swagger": "^8.4.0",
"@fastify/swagger-ui": "^1.8.1",
"@types/crypto-js": "^4.1.1",
"@types/glob": "^8.0.0",
"@types/glob": "^8.1.0",
"@types/json-schema-merge-allof": "^0.6.1",
"@types/node": "^18.11.3",
"@types/prettier": "^2.7.1",
"@types/split2": "^3.2.1",
"@types/tap": "^15.0.7",
"@types/yargs": "^17.0.13",
"fastify": "^4.9.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"pino-pretty": "^9.1.1",
"@types/node": "^20.2.1",
"@types/prettier": "^2.7.2",
"@types/split2": "^4.2.0",
"@types/tap": "^15.0.8",
"@types/yargs": "^17.0.24",
"fastify": "^4.17.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"pino-pretty": "^10.0.0",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"split2": "^4.1.0",
"syncpack": "^8.2.4",
"tap": "^16.3.0",
"prettier": "^2.8.8",
"split2": "^4.2.0",
"syncpack": "^9.8.6",
"tap": "^16.3.4",
"ts-node-dev": "^2.0.0",
"tsd": "^0.24.1",
"type-fest": "^3.1.0",
"typescript": "^4.8.4"
"tsd": "^0.28.1",
"type-fest": "^3.10.0",
"typescript": "^5.0.4"
},
"directories": {
"test": "test/",
Expand Down
Loading

0 comments on commit 4c6aca7

Please sign in to comment.