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

@alcalzone/release-script-plugin-package

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alcalzone/release-script-plugin-package - npm Package Compare versions

Comparing version 3.6.0 to 3.7.0

13

build/index.js

@@ -64,2 +64,8 @@ "use strict";

},
forceUpdateLockfile: {
alias: ["force-update-lockfile", "lf"],
description: "Update the lockfile before committing, using the --force flag",
type: "boolean",
default: false,
},
});

@@ -247,7 +253,7 @@ }

if (context.hasData("monorepo") && context.getData("monorepo") === "yarn") {
// Not necessary, when using yarn workspaces this was done during the edit stage
// Not necessary, when using yarn workspaces, this was done during the edit stage
return;
}
if (context.argv.updateLockfile) {
context.cli.log(`updating lockfile...`);
if (context.argv.updateLockfile || context.argv.forceUpdateLockfile) {
context.cli.log(`updating lockfile...${context.argv.forceUpdateLockfile ? " (with --force)" : ""}`);
const pak = await (0, pak_1.detectPackageManager)({

@@ -263,2 +269,3 @@ cwd: context.cwd,

ignoreScripts: true,
force: !!context.argv.forceUpdateLockfile,
});

@@ -265,0 +272,0 @@ if (!result.success) {

@@ -6,3 +6,3 @@ {

},
"version": "3.6.0",
"version": "3.7.0",
"description": "Plugin for Al Calzone's release script: npm package files",

@@ -41,4 +41,4 @@ "keywords": [],

"dependencies": {
"@alcalzone/pak": "^0.8.1",
"@alcalzone/release-script-core": "3.5.9",
"@alcalzone/pak": "^0.10.1",
"@alcalzone/release-script-core": "3.7.0",
"alcalzone-shared": "^4.0.1",

@@ -49,5 +49,5 @@ "fs-extra": "^10.1.0",

"devDependencies": {
"@alcalzone/release-script-testing": "3.5.9",
"jest-extended": "^2.0.0",
"typescript": "~4.6.3"
"@alcalzone/release-script-testing": "3.7.0",
"jest-extended": "^3.1.0",
"typescript": "~4.8.4"
},

@@ -54,0 +54,0 @@ "scripts": {

Sorry, the diff of this file is not supported yet

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