Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@qawolf/repl

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qawolf/repl - npm Package Compare versions

Comparing version 0.9.0-beta.3 to 0.9.0-beta.4

lib/Registry.d.ts

4

lib/index.d.ts

@@ -1,2 +0,2 @@

export { repl } from "./repl";
export { replRegistry } from "./replRegistry";
export { repl, ReplWithContext } from "./ReplWithContext";
export { registry } from "./Registry";
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const Reporter_1 = require("./Reporter");
var repl_1 = require("./repl");
exports.repl = repl_1.repl;
var replRegistry_1 = require("./replRegistry");
exports.replRegistry = replRegistry_1.replRegistry;
const repl_2 = require("./repl");
const replRegistry_2 = require("./replRegistry");
var ReplWithContext_1 = require("./ReplWithContext");
exports.repl = ReplWithContext_1.repl;
exports.ReplWithContext = ReplWithContext_1.ReplWithContext;
var Registry_1 = require("./Registry");
exports.registry = Registry_1.registry;
const ReplWithContext_2 = require("./ReplWithContext");
const Registry_2 = require("./Registry");
const mainExport = Reporter_1.Reporter;
mainExport.repl = repl_2.repl;
mainExport.replRegistry = replRegistry_2.replRegistry;
mainExport.repl = ReplWithContext_2.repl;
mainExport.registry = Registry_2.registry;
module.exports = mainExport;
//# sourceMappingURL=index.js.map
{
"name": "@qawolf/repl",
"description": "qawolf repl",
"version": "0.9.0-beta.3",
"version": "0.9.0-beta.4",
"license": "BSD-3.0",

@@ -26,3 +26,3 @@ "main": "./lib/index.js",

"dependencies": {
"@qawolf/logger": "0.9.0-beta.3",
"@qawolf/logger": "0.9.0-beta.4",
"await-outside": "^3.0.0"

@@ -32,2 +32,3 @@ },

"@jest/test-result": "^25.1.0",
"@qawolf/types": "0.9.0-beta.4",
"jest-mock-process": "^1.3.2",

@@ -39,3 +40,3 @@ "kleur": "^3.x"

},
"gitHead": "046b6c1336c797e35ce575a6183e21ee51c37406"
"gitHead": "9ce23bc6f21da712db55adb193dec1d15a29665d"
}
import { Reporter } from "./Reporter";
// export this way for types to be happy
export { repl } from "./repl";
export { replRegistry } from "./replRegistry";
// export for types to be happy
export { repl, ReplWithContext } from "./ReplWithContext";
export { registry } from "./Registry";
import { repl } from "./repl";
import { replRegistry } from "./replRegistry";
import { repl } from "./ReplWithContext";
import { registry } from "./Registry";
// we need to use module.exports for Jest to be happy
// export with module.exports for Jest to be happy
const mainExport = Reporter as any;
mainExport.repl = repl;
mainExport.replRegistry = replRegistry;
mainExport.registry = registry;
module.exports = mainExport;

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