@lcap/nasl-utils
Advanced tools
Comparing version 3.10.0-beta.16 to 3.10.0-beta.17
@@ -23,3 +23,3 @@ "use strict"; | ||
function runGeneratorAsync(generator) { | ||
return new Promise((resolve) => { | ||
return new Promise((resolve, reject) => { | ||
let result = { | ||
@@ -43,3 +43,3 @@ done: false, | ||
.then(result.done ? resolve : runAsync) | ||
.catch(error => generator.throw(error)); | ||
.catch(error => reject(error)); | ||
} | ||
@@ -46,0 +46,0 @@ else if (result.done) { |
{ | ||
"name": "@lcap/nasl-utils", | ||
"description": "NetEase Application Specific Language", | ||
"version": "3.10.0-beta.16", | ||
"version": "3.10.0-beta.17", | ||
"author": "Forrest <rainforest92@126.com>", | ||
@@ -21,8 +21,8 @@ "main": "./out", | ||
"typescript": "5.4.4", | ||
"@lcap/nasl-test-toolkit": "1.0.0", | ||
"@lcap/nasl-tsconfig": "1.0.1" | ||
"@lcap/nasl-tsconfig": "1.0.1", | ||
"@lcap/nasl-test-toolkit": "1.0.0" | ||
}, | ||
"dependencies": { | ||
"uuid": "8.3.2", | ||
"@lcap/nasl-types": "3.10.0-beta.16" | ||
"@lcap/nasl-types": "3.10.0-beta.17" | ||
}, | ||
@@ -29,0 +29,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
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
127948
+ Added@lcap/nasl-types@3.10.0-beta.17(transitive)
- Removed@lcap/nasl-types@3.10.0-beta.16(transitive)