Socket
Socket
Sign inDemoInstall

@web/test-runner-core

Package Overview
Dependencies
Maintainers
0
Versions
145
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/test-runner-core - npm Package Compare versions

Comparing version 0.13.2 to 0.13.3

4

dist/cli/getManualDebugMenu.js

@@ -8,6 +8,6 @@ "use strict";

const nanocolors_1 = require("nanocolors");
const ip_1 = __importDefault(require("ip"));
const internal_ip_1 = __importDefault(require("internal-ip"));
function getManualDebugMenu(config) {
const localAddress = `${config.protocol}//${config.hostname}:${config.port}/`;
const networkAddress = `${config.protocol}//${ip_1.default.address()}:${config.port}/`;
const networkAddress = `${config.protocol}//${internal_ip_1.default.v4.sync()}:${config.port}/`;
return [

@@ -14,0 +14,0 @@ 'Debug manually in a browser not controlled by the test runner.',

{
"name": "@web/test-runner-core",
"version": "0.13.2",
"version": "0.13.3",
"publishConfig": {

@@ -71,3 +71,3 @@ "access": "public"

"globby": "^11.0.1",
"ip": "^2.0.1",
"internal-ip": "^6.2.0",
"istanbul-lib-coverage": "^3.0.0",

@@ -74,0 +74,0 @@ "istanbul-lib-report": "^3.0.1",

import { cyan, gray } from 'nanocolors';
import ip from 'ip';
import internalIp from 'internal-ip';

@@ -8,3 +8,3 @@ import { TestRunnerCoreConfig } from '../config/TestRunnerCoreConfig';

const localAddress = `${config.protocol}//${config.hostname}:${config.port}/`;
const networkAddress = `${config.protocol}//${ip.address()}:${config.port}/`;
const networkAddress = `${config.protocol}//${internalIp.v4.sync()}:${config.port}/`;

@@ -11,0 +11,0 @@ return [

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc