@highoutput/amqp
Advanced tools
Comparing version 0.0.8 to 0.0.9
{ | ||
"name": "@highoutput/amqp", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "A simplified abstraction of the AMQP 1.0 protocol", | ||
@@ -18,3 +18,5 @@ "keywords": [ | ||
"test": "TS_NODE_PROJECT=tsconfig.json TS_NODE_FILES=true cucumber-js -p default", | ||
"debug": "node --nolazy --debug-brk=5858 ./node_modules/.bin/cucumberjs" | ||
"clean": "rimraf build/", | ||
"build": "npm run clean && tsc --project tsconfig.json", | ||
"prepublish": "npm run build" | ||
}, | ||
@@ -28,2 +30,3 @@ "bugs": { | ||
"@types/ramda": "^0.26.40", | ||
"@types/serialize-error": "^4.0.1", | ||
"@types/uuid": "^3.4.6", | ||
@@ -33,2 +36,3 @@ "chai": "^4.2.0", | ||
"cucumber-pretty": "^6.0.0", | ||
"rimraf": "^3.0.0", | ||
"ts-node": "^8.6.2", | ||
@@ -43,2 +47,3 @@ "typescript": "^3.7.5" | ||
"rhea": "^1.0.16", | ||
"serialize-error": "^5.0.0", | ||
"uuid": "^3.4.0" | ||
@@ -49,3 +54,3 @@ }, | ||
}, | ||
"gitHead": "dc55257256f2b9b62063db23471612829fd74adc" | ||
"gitHead": "724e467edde9795b02b1446427e303986a2a9a12" | ||
} |
@@ -8,3 +8,5 @@ /* eslint-disable @typescript-eslint/no-non-null-assertion, @typescript-eslint/camelcase */ | ||
type AmqpOptions = { | ||
export { Client, Worker }; | ||
export type AmqpOptions = { | ||
host: string; | ||
@@ -27,3 +29,3 @@ port: number; | ||
public constructor(options?: Partial<AmqpOptions>) { | ||
this.options = R.mergeDeepRight(options || {}, { | ||
this.options = R.mergeDeepLeft(options || {}, { | ||
host: 'localhost', | ||
@@ -30,0 +32,0 @@ port: 5672, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
30797
20
448
7
11
1
+ Addedserialize-error@^5.0.0
+ Addedserialize-error@5.0.0(transitive)
+ Addedtype-fest@0.8.1(transitive)