@endo/init
Advanced tools
Comparing version 0.5.52 to 0.5.53
{ | ||
"name": "@endo/init", | ||
"version": "0.5.52", | ||
"version": "0.5.53", | ||
"description": "Prepare Endo environment on import", | ||
@@ -21,2 +21,4 @@ "type": "module", | ||
"build": "exit 0", | ||
"prepack": "tsc --build jsconfig.build.json", | ||
"postpack": "git clean -f '*.d.ts*'", | ||
"test": "ava", | ||
@@ -26,14 +28,15 @@ "test:xs": "exit 0", | ||
"lint-fix": "eslint --fix '**/*.js'", | ||
"lint": "eslint '**/*.js'" | ||
"lint": "yarn lint:types && eslint '**/*.js'", | ||
"lint:types": "tsc -p jsconfig.json" | ||
}, | ||
"devDependencies": { | ||
"@endo/compartment-mapper": "^0.8.0", | ||
"@endo/ses-ava": "^0.2.36", | ||
"ava": "^3.12.1" | ||
"@endo/compartment-mapper": "^0.8.1", | ||
"@endo/ses-ava": "^0.2.37", | ||
"ava": "^5.1.0" | ||
}, | ||
"dependencies": { | ||
"@endo/base64": "^0.2.28", | ||
"@endo/eventual-send": "^0.16.8", | ||
"@endo/lockdown": "^0.1.24", | ||
"@endo/promise-kit": "^0.2.52" | ||
"@endo/base64": "^0.2.29", | ||
"@endo/eventual-send": "^0.16.9", | ||
"@endo/lockdown": "^0.1.25", | ||
"@endo/promise-kit": "^0.2.53" | ||
}, | ||
@@ -71,2 +74,3 @@ "files": [ | ||
"prettier": { | ||
"arrowParens": "avoid", | ||
"trailingComma": "all", | ||
@@ -78,3 +82,3 @@ "singleQuote": true | ||
}, | ||
"gitHead": "da16a94856482e36296b7cae16d715aa63344928" | ||
"gitHead": "ab8d64ae6fc9c628a2d1c02d16bf9ef249f5c8dc" | ||
} |
@@ -43,3 +43,3 @@ import { createHook, AsyncResource } from 'async_hooks'; | ||
const { description } = sym; | ||
if (description in asyncHooksSymbols) { | ||
if (description && description in asyncHooksSymbols) { | ||
if (setAsyncSymbol(description, sym)) { | ||
@@ -143,3 +143,5 @@ found += 1; | ||
state = { | ||
// @ts-expect-error key may be undefined | ||
[asyncHooksSymbols.async_id_symbol]: undefined, | ||
// @ts-expect-error key may be undefined | ||
[asyncHooksSymbols.trigger_async_id_symbol]: undefined, | ||
@@ -146,0 +148,0 @@ }; |
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
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
24
273
27317
Updated@endo/base64@^0.2.29
Updated@endo/eventual-send@^0.16.9
Updated@endo/lockdown@^0.1.25
Updated@endo/promise-kit@^0.2.53