@gasket/engine
Advanced tools
Comparing version 6.3.0 to 6.7.3
# `@gasket/engine` | ||
### 6.7.3 | ||
- Fix issue causing unhandled rejection warnings to surface ([#299]) | ||
### 6.0.11 | ||
@@ -64,3 +68,4 @@ | ||
[#267]: https://github.com/godaddy/gasket/pull/267 | ||
[#299]: https://github.com/godaddy/gasket/pull/299 | ||
[Loader]:/packages/gasket-resolve/docs/api.md#loader |
@@ -430,7 +430,7 @@ const debug = require('debug')('gasket:engine'); | ||
const result = exec(plan); | ||
if (result.finally) { | ||
return result.finally(() => this._traceDepth--); | ||
} | ||
result.finally | ||
? result.finally(() => this._traceDepth--) | ||
: this._traceDepth--; | ||
this._traceDepth--; | ||
return result; | ||
@@ -437,0 +437,0 @@ } |
{ | ||
"name": "@gasket/engine", | ||
"version": "6.3.0", | ||
"version": "6.7.3", | ||
"description": "Plugin engine for gasket", | ||
@@ -9,3 +9,3 @@ "main": "lib/engine.js", | ||
"lint:fix": "npm run lint -- --fix", | ||
"test": "jest", | ||
"test": "cross-env NODE_OPTIONS='--unhandled-rejections=strict' jest", | ||
"test:watch": "jest --watch", | ||
@@ -43,2 +43,3 @@ "test:coverage": "jest --coverage", | ||
"devDependencies": { | ||
"cross-env": "^5.1.6", | ||
"eslint": "^7.17.0", | ||
@@ -54,3 +55,3 @@ "eslint-config-godaddy": "^4.0.1", | ||
}, | ||
"gitHead": "817619a4a8f57707fc110316118cb25d60d97c75" | ||
"gitHead": "d9ffd55a34b78f9a8d0a09e79cf93cf8a15a104d" | ||
} |
28411
482
7