Socket
Socket
Sign inDemoInstall

@acot/runner

Package Overview
Dependencies
4
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.1 to 0.0.2-canary.0

7

CHANGELOG.md

@@ -6,2 +6,9 @@ # Change Log

## [0.0.2-canary.0](https://github.com/acot-a11y/acot/compare/@acot/runner@0.0.1...@acot/runner@0.0.2-canary.0) (2020-11-02)
### Bug Fixes
- **core:** Fix a bug that `BrowserPool` hangs ([93da5cb](https://github.com/acot-a11y/acot/commit/93da5cbdf28508e4e3cf95983bf710d1675ff3da))
- **reporter:** Fix a bug that PrettyReporter hangs in the case of many URLs ([7248532](https://github.com/acot-a11y/acot/commit/7248532c0380a0483a537c124173f2191027dd54))
## 0.0.1 (2020-10-31)

@@ -8,0 +15,0 @@

16

lib/base.js

@@ -56,4 +56,16 @@ "use strict";

await this._collect();
const summary = await this._audit();
await this._cleanup();
let summary;
let error = null;
try {
summary = await this._audit();
}
catch (e) {
error = e;
}
finally {
await this._cleanup();
}
if (error != null) {
throw error;
}
return summary;

@@ -60,0 +72,0 @@ }

14

package.json
{
"name": "@acot/runner",
"version": "0.0.1",
"version": "0.0.2-canary.0",
"description": "A runner toolset for @acot/cli.",
"homepage": "https://github.com/acot-a11y/acot#readme",
"homepage": "https://github.com/acot-a11y/acot/tree/master/packages/runner",
"bugs": {

@@ -33,4 +33,4 @@ "url": "https://github.com/acot-a11y/acot/issues"

"dependencies": {
"@acot/connection": "0.0.1",
"@acot/module-loader": "0.0.1",
"@acot/connection": "0.0.2-canary.0",
"@acot/module-loader": "0.0.2-canary.0",
"debug": "^4.2.0",

@@ -40,4 +40,4 @@ "emittery": "^0.7.1"

"devDependencies": {
"@acot/factory": "0.0.1",
"@acot/types": "0.0.1"
"@acot/factory": "0.0.2-canary.0",
"@acot/types": "0.0.2-canary.0"
},

@@ -47,3 +47,3 @@ "publishConfig": {

},
"gitHead": "564fb61b40646392ed163b122531ad4ae3ba65e4"
"gitHead": "61cca80b5953b0ee87f2b3de4b7764ada4d057fb"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc