Skip to content

Commit

Permalink
fix: better types (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
AVVS authored Feb 24, 2022
1 parent 116aa86 commit 175a513
Show file tree
Hide file tree
Showing 15 changed files with 378 additions and 143 deletions.
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"name": "@microfleet/transport-amqp",
"description": "microservice utils based on amqp transport layer",
"version": "0.0.0-development",
"main": "./src/amqp.js",
"types": "./types/index.d.ts",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"compile": "rimraf ./lib; cp -r ./src ./lib && pnpm run types",
"types": "tsc src/**.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"compile": "rimraf ./lib; pnpm run types",
"types": "tsc -p tsconfig.build.json",
"lint": "eslint ./src",
"test": "pnpm run lint && pnpm run test:e2e",
"test:e2e": "mdep test run",
Expand All @@ -31,6 +31,8 @@
"devDependencies": {
"@makeomatic/deploy": "^12.6.3",
"@types/bluebird": "^3.5.36",
"@types/is": "^0.0.21",
"@types/lodash": "^4.14.178",
"benchmark": "^2.1.4",
"c8": "^7.11.0",
"chai": "^4.3.6",
Expand All @@ -54,6 +56,7 @@
},
"dependencies": {
"@microfleet/amqp-coffee": "^1.3.1",
"@types/common-errors": "^1.0.2",
"bluebird": "^3.7.2",
"common-errors": "^1.2.0",
"debug": "^4.3.3",
Expand All @@ -67,6 +70,7 @@
"object-hash": "^3.0.0",
"opentracing": "^0.14.7",
"pino": "^7.8.0",
"read-pkg": "5",
"sonic-boom": "^2.6.0",
"uuid": "^8.3.2"
},
Expand Down
Loading

0 comments on commit 175a513

Please sign in to comment.