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

@nx-tools/core

Package Overview
Dependencies
Maintainers
1
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nx-tools/core - npm Package Compare versions

Comparing version 1.0.0-alpha.11 to 1.0.0-alpha.12

4

package.json

@@ -7,6 +7,6 @@ {

"license": "MIT",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"dependencies": {
"@actions/exec": "^1.0.0",
"@nx-tools/ci": "^1.0.0-alpha.11",
"@nx-tools/ci": "^1.0.0-alpha.12",
"chalk": "^4.1.0"

@@ -13,0 +13,0 @@ },

@@ -33,3 +33,3 @@ "use strict";

exports.getInput = (name, fallback, options) => {
const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || fallback || '';
const val = process.env[`INPUT_${name.replace(/[ -]/g, '_').toUpperCase()}`] || fallback || '';
if (options && options.required && !val) {

@@ -36,0 +36,0 @@ throw new Error(`Input required and not supplied: ${name}`);

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