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

enhanced-publish

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

enhanced-publish - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

6

index.js
#!/usr/bin/env node
// @ts-check
const { spawn } = require("child_process")

@@ -8,3 +10,3 @@ const { readFileSync } = require("fs")

function getPackageInfo() {
const pJson = JSON.parse(readFileSync("./package.json"))
const pJson = JSON.parse(readFileSync("./package.json", "utf8"))

@@ -60,5 +62,5 @@ return {

const child = spawn("npm", ["publish", ...args], { stdio: "inherit" })
child.on("exit", (code) => process.exit(code))
child.on("exit", (code) => process.exit(code ?? 0))
}
run()
{
"name": "enhanced-publish",
"version": "1.1.1",
"version": "1.1.2",
"description": "Npm publish command with lerna's from-package publish behaviour.",

@@ -13,3 +13,3 @@ "repository": "github:js-soft/enhanced-npm-publish",

"dependencies": {
"pacote": "^15.0.6"
"pacote": "^17.0.6"
},

@@ -16,0 +16,0 @@ "publishConfig": {

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