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.3 to 1.0.0-alpha.4

9

package.json

@@ -7,10 +7,9 @@ {

"license": "MIT",
"version": "1.0.0-alpha.3",
"version": "1.0.0-alpha.4",
"dependencies": {
"@nx-tools/ci": "^1.0.0-alpha.3",
"@actions/exec": "1.0.4"
"@actions/exec": "^1.0.0",
"@nx-tools/ci": "^1.0.0-alpha.4"
},
"main": "src/index.js",
"typings": "src/index.d.ts",
"peerDependencies": {}
"typings": "src/index.d.ts"
}

@@ -53,1 +53,2 @@ /**

export declare const asyncForEach: (array: any, callback: any) => Promise<void>;
export declare const parseBoolean: (value?: boolean) => 'true' | 'false' | undefined;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.asyncForEach = exports.endGroup = exports.startGroup = exports.setFailed = exports.info = exports.getInput = exports.ExitCode = void 0;
exports.parseBoolean = exports.asyncForEach = exports.endGroup = exports.startGroup = exports.setFailed = exports.info = exports.getInput = exports.ExitCode = void 0;
const tslib_1 = require("tslib");

@@ -94,2 +94,3 @@ const ci = require("@nx-tools/ci");

});
exports.parseBoolean = (value) => value === undefined ? undefined : value ? 'true' : 'false';
//# sourceMappingURL=core.js.map

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