Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: asleekgeek/graphql-mesh
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 760830dc2d502eac6d598d987403b3562fcb8bc0
Choose a base ref
..
head repository: asleekgeek/graphql-mesh
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 01b6ef46c35168ca8e57a8693d07572c218425e3
Choose a head ref
Showing with 4 additions and 2 deletions.
  1. +4 −2 scripts/remove-node-libcurl.cjs
6 changes: 4 additions & 2 deletions scripts/remove-node-libcurl.cjs
Original file line number Diff line number Diff line change
@@ -4,5 +4,7 @@ const path = require('path');
const packageJson = fs.readFileSync(path.join(__dirname, '../packages/cli/package.json'), 'utf8');
const packageJsonParsed = JSON.parse(packageJson);
delete packageJsonParsed.dependencies['node-libcurl'];
fs.writeFileSync(path.join(__dirname, '../packages/cli/package.json'), JSON.stringify(packageJsonParsed, null, 2));

fs.writeFileSync(
path.join(__dirname, '../packages/cli/package.json'),
JSON.stringify(packageJsonParsed, null, 2),
);