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

@definitelytyped/dts-critic

Package Overview
Dependencies
Maintainers
7
Versions
151
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@definitelytyped/dts-critic - npm Package Compare versions

Comparing version 0.0.180 to 0.0.181

6

CHANGELOG.md
# @definitelytyped/dts-critic
## 0.0.181
### Patch Changes
- a5011acf: Disable corepack when we run npm
## 0.0.180

@@ -4,0 +10,0 @@

7

dist/index.js

@@ -191,2 +191,3 @@ "use strict";

encoding: "utf8",
env: { ...process.env, COREPACK_ENABLE_STRICT: "0" },
});

@@ -297,3 +298,7 @@ const info = JSON.parse(infoResult.stdout || infoResult.stderr);

const fullName = `${npmName}@${version}`;
const cpOpts = { encoding: "utf8", maxBuffer: 100 * 1024 * 1024 };
const cpOpts = {
encoding: "utf8",
maxBuffer: 100 * 1024 * 1024,
env: { ...process.env, COREPACK_ENABLE_STRICT: "0" },
};
const npmPack = cp.execFileSync("npm", ["pack", fullName, "--json", "--silent"], cpOpts).trim();

@@ -300,0 +305,0 @@ // https://github.com/npm/cli/issues/3405

@@ -194,2 +194,3 @@ import yargs = require("yargs");

encoding: "utf8",
env: { ...process.env, COREPACK_ENABLE_STRICT: "0" },
});

@@ -302,3 +303,7 @@ const info = JSON.parse(infoResult.stdout || infoResult.stderr);

const fullName = `${npmName}@${version}`;
const cpOpts = { encoding: "utf8", maxBuffer: 100 * 1024 * 1024 } as const;
const cpOpts = {
encoding: "utf8",
maxBuffer: 100 * 1024 * 1024,
env: { ...process.env, COREPACK_ENABLE_STRICT: "0" },
} as const;
const npmPack = cp.execFileSync("npm", ["pack", fullName, "--json", "--silent"], cpOpts).trim();

@@ -305,0 +310,0 @@ // https://github.com/npm/cli/issues/3405

2

package.json
{
"name": "@definitelytyped/dts-critic",
"version": "0.0.180",
"version": "0.0.181",
"author": "Nathan Shively-Sanders",

@@ -5,0 +5,0 @@ "description": "Checks a new .d.ts against the Javascript source and tells you what problems it has",

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