New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@githubnext/vitale

Package Overview
Dependencies
Maintainers
0
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@githubnext/vitale - npm Package Compare versions

Comparing version

to
0.0.18

LICENSE

10

dist/cli.js

@@ -7,3 +7,3 @@ #!/usr/bin/env node

// package.json
var version = "0.0.17";
var version = "0.0.18";

@@ -681,3 +681,3 @@ // src/server.ts

}
var stackFrameRegex = /^\s+at (Domain|Runner|executeCell)/;
var stackFrameRegex = /^\s+at (Domain|Runner|executeCell|mimeTaggedResultOf)/;
function rewriteStack(stack) {

@@ -719,3 +719,7 @@ if (!stack) {

} else if (typeof result === "object") {
return { mime: "application/json", data: JSON.stringify(result) };
try {
return { mime: "application/json", data: JSON.stringify(result) };
} catch (e) {
return mimeTaggedResultOf(e);
}
} else {

@@ -722,0 +726,0 @@ return { mime: "text/x-javascript", data: JSON.stringify(result) };

{
"name": "@githubnext/vitale",
"version": "0.0.17",
"version": "0.0.18",
"description": "",

@@ -5,0 +5,0 @@ "license": "MIT",