Socket
Socket
Sign inDemoInstall

@pact-foundation/pact-node

Package Overview
Dependencies
Maintainers
4
Versions
187
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pact-foundation/pact-node - npm Package Compare versions

Comparing version 6.12.2 to 6.12.3

2

package.json
{
"name": "@pact-foundation/pact-node",
"version": "6.12.2",
"version": "6.12.3",
"description": "A wrapper for the Ruby version of Pact to work within Node",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -10,3 +10,2 @@ "use strict";

var chalk = require("chalk");
var rimraf = require("rimraf");
function download(data) {

@@ -55,3 +54,6 @@ return new Promise(function (resolve, reject) {

.then(function () {
rimraf.sync(path.resolve(__dirname, "bin", "pact-publish" + (data.isWindows ? ".bat" : "")));
var publishPath = path.resolve(data.platformFolderPath, "bin", "pact-publish" + (data.isWindows ? ".bat" : ""));
if (fs.existsSync(publishPath)) {
fs.unlinkSync(publishPath);
}
console.log(chalk.green("Extraction done."));

@@ -58,0 +60,0 @@ })

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