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

@pnpm/default-reporter

Package Overview
Dependencies
Maintainers
3
Versions
343
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pnpm/default-reporter - npm Package Compare versions

Comparing version 4.0.0-2 to 4.0.0-3

6

lib/index.d.ts

@@ -1,2 +0,2 @@

import { PnpmConfigs } from '@pnpm/config';
import { Config } from '@pnpm/config';
import most = require('most');

@@ -12,3 +12,3 @@ export default function (opts: {

argv: string[];
configs?: PnpmConfigs;
config?: Config;
};

@@ -25,4 +25,4 @@ }): void;

argv: string[];
configs?: PnpmConfigs;
config?: Config;
};
}): most.Stream<string>;

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

isRecursive: opts.context.argv[0] === 'recursive',
pnpmConfigs: opts.context.configs,
pnpmConfig: opts.context.config,
subCmd: opts.context.argv[1],

@@ -147,0 +147,0 @@ throttleProgress: opts.reportingOptions && opts.reportingOptions.throttleProgress,

@@ -1,2 +0,2 @@

import { PnpmConfigs } from '@pnpm/config';
import { Config } from '@pnpm/config';
import * as logs from '@pnpm/core-loggers';

@@ -28,5 +28,5 @@ import most = require('most');

throttleProgress?: number;
pnpmConfigs?: PnpmConfigs;
pnpmConfig?: Config;
}): Array<most.Stream<most.Stream<{
msg: string;
}>>>;

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

const width = opts.width || process.stdout.columns || 80;
const cwd = opts.pnpmConfigs && opts.pnpmConfigs.prefix || process.cwd();
const cwd = opts.pnpmConfig && opts.pnpmConfig.prefix || process.cwd();
const outputs = [

@@ -51,3 +51,3 @@ reportProgress_1.default(log$, {

cwd,
pnpmConfigs: opts.pnpmConfigs,
pnpmConfig: opts.pnpmConfig,
}));

@@ -54,0 +54,0 @@ }

@@ -1,2 +0,2 @@

import { PnpmConfigs } from '@pnpm/config';
import { Config } from '@pnpm/config';
import { DeprecationLog, PackageJsonLog, RootLog, SummaryLog } from '@pnpm/core-loggers';

@@ -11,3 +11,3 @@ import most = require('most');

cwd: string;
pnpmConfigs?: PnpmConfigs | undefined;
pnpmConfig?: Config | undefined;
}) => most.Stream<most.Stream<{

@@ -14,0 +14,0 @@ msg: string;

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

msg += constants_1.EOL;
if (opts.pnpmConfigs && opts.pnpmConfigs.global) {
if (opts.pnpmConfig && opts.pnpmConfig.global) {
msg += chalk_1.default.cyanBright(`${opts.cwd}:`);

@@ -24,0 +24,0 @@ }

{
"name": "@pnpm/default-reporter",
"version": "4.0.0-2",
"version": "4.0.0-3",
"description": "The default reporter of pnpm",

@@ -37,3 +37,3 @@ "main": "lib/index.js",

"dependencies": {
"@pnpm/config": "4.0.0-2",
"@pnpm/config": "4.0.0-3",
"@pnpm/core-loggers": "3.0.3",

@@ -53,3 +53,3 @@ "@pnpm/error": "1.0.0",

"semver": "6.3.0",
"stacktracey": "1.2.117",
"stacktracey": "1.2.122",
"string-length": "3.1.0",

@@ -56,0 +56,0 @@ "strip-ansi": "5.2.0"

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