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

nx-ignore

Package Overview
Dependencies
Maintainers
3
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nx-ignore - npm Package Compare versions

Comparing version 18.0.2 to 18.3.0-beta.1

6

package.json
{
"name": "nx-ignore",
"version": "18.0.2",
"version": "18.3.0-beta.1",
"type": "commonjs",

@@ -22,6 +22,6 @@ "repository": {

"dependencies": {
"@swc/helpers": "0.5.1",
"fs-extra": "^10.1.0"
"fs-extra": "^10.1.0",
"@swc/helpers": "0.5.1"
},
"main": "./src/index.js"
}

@@ -60,5 +60,11 @@ #!/usr/bin/env node

const graphJsonPath = join(tmpdir(), '.nx-affected-graph.json');
execSync(`npx nx affected:graph --base=${baseSha} --head=${headSha} --file=${graphJsonPath}`, {
cwd: root
});
try {
execSync(`npx nx affected:graph --base=${baseSha} --head=${headSha} --file=${graphJsonPath}`, {
cwd: root
});
} catch (e) {
if (e.stdout) console.error(e.stdout.toString());
if (e.stderr) console.error(e.stderr.toString());
exitWithoutBuild(`🛑 - Build cancelled due to the error above (Hint: commit with "[nx deploy]" to force deployment)`);
}
const projects = JSON.parse(readFileSync(graphJsonPath).toString()).affectedProjects;

@@ -65,0 +71,0 @@ logDebug(`≫ Affected projects:\n - ${projects.join('\n - ')}\n`);

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