@pnpm/default-reporter 11.0.41 → 11.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +2 -2
- package/lib/reportError.d.ts +2 -2
- package/lib/reporterForClient/index.d.ts +4 -4
- package/lib/reporterForClient/pkgsDiff.d.ts +1 -1
- package/lib/reporterForClient/reportBigTarballsProgress.d.ts +2 -2
- package/lib/reporterForClient/reportContext.d.ts +1 -1
- package/lib/reporterForClient/reportDeprecations.d.ts +1 -1
- package/lib/reporterForClient/reportExecutionTime.d.ts +1 -1
- package/lib/reporterForClient/reportHooks.d.ts +1 -1
- package/lib/reporterForClient/reportInstallChecks.d.ts +1 -1
- package/lib/reporterForClient/reportLifecycleScripts.d.ts +1 -1
- package/lib/reporterForClient/reportMisc.d.ts +3 -3
- package/lib/reporterForClient/reportPeerDependencyIssues.d.ts +1 -1
- package/lib/reporterForClient/reportProgress.d.ts +1 -1
- package/lib/reporterForClient/reportRequestRetry.d.ts +1 -1
- package/lib/reporterForClient/reportScope.d.ts +1 -1
- package/lib/reporterForClient/reportSkippedOptionalDependencies.d.ts +1 -1
- package/lib/reporterForClient/reportStats.d.ts +1 -1
- package/lib/reporterForClient/reportSummary.d.ts +2 -2
- package/lib/reporterForClient/reportUpdateCheck.d.ts +1 -1
- package/lib/reporterForServer.d.ts +3 -3
- package/package.json +5 -5
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { Config } from '@pnpm/config';
|
|
3
|
-
import { LogLevel } from '@pnpm/logger';
|
|
2
|
+
import { type Config } from '@pnpm/config';
|
|
3
|
+
import { type LogLevel } from '@pnpm/logger';
|
|
4
4
|
import * as Rx from 'rxjs';
|
|
5
5
|
import { formatWarn } from './reporterForClient/utils/formatWarn';
|
|
6
6
|
export { formatWarn };
|
package/lib/reportError.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { Config } from '@pnpm/config';
|
|
2
|
-
import { Log } from '@pnpm/core-loggers';
|
|
1
|
+
import { type Config } from '@pnpm/config';
|
|
2
|
+
import { type Log } from '@pnpm/core-loggers';
|
|
3
3
|
export declare function reportError(logObj: Log, config?: Config): string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { Config } from '@pnpm/config';
|
|
3
|
-
import * as logs from '@pnpm/core-loggers';
|
|
4
|
-
import { LogLevel } from '@pnpm/logger';
|
|
5
|
-
import * as Rx from 'rxjs';
|
|
2
|
+
import { type Config } from '@pnpm/config';
|
|
3
|
+
import type * as logs from '@pnpm/core-loggers';
|
|
4
|
+
import { type LogLevel } from '@pnpm/logger';
|
|
5
|
+
import type * as Rx from 'rxjs';
|
|
6
6
|
export declare function reporterForClient(log$: {
|
|
7
7
|
context: Rx.Observable<logs.ContextLog>;
|
|
8
8
|
fetchingProgress: Rx.Observable<logs.FetchingProgressLog>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { FetchingProgressLog } from '@pnpm/core-loggers';
|
|
2
|
-
import * as Rx from 'rxjs';
|
|
1
|
+
import { type FetchingProgressLog } from '@pnpm/core-loggers';
|
|
2
|
+
import type * as Rx from 'rxjs';
|
|
3
3
|
export declare function reportBigTarballProgress(log$: {
|
|
4
4
|
fetchingProgress: Rx.Observable<FetchingProgressLog>;
|
|
5
5
|
}): Rx.Observable<Rx.Observable<{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ContextLog, PackageImportMethodLog } from '@pnpm/core-loggers';
|
|
1
|
+
import { type ContextLog, type PackageImportMethodLog } from '@pnpm/core-loggers';
|
|
2
2
|
import * as Rx from 'rxjs';
|
|
3
3
|
export declare function reportContext(log$: {
|
|
4
4
|
context: Rx.Observable<ContextLog>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExecutionTimeLog } from '@pnpm/core-loggers';
|
|
1
|
+
import { type ExecutionTimeLog } from '@pnpm/core-loggers';
|
|
2
2
|
import * as Rx from 'rxjs';
|
|
3
3
|
export declare function reportExecutionTime(executionTime$: Rx.Observable<ExecutionTimeLog>): Rx.Observable<Rx.Observable<{
|
|
4
4
|
fixed: boolean;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Config } from '@pnpm/config';
|
|
2
|
-
import { Log, RegistryLog } from '@pnpm/core-loggers';
|
|
3
|
-
import { LogLevel } from '@pnpm/logger';
|
|
1
|
+
import { type Config } from '@pnpm/config';
|
|
2
|
+
import { type Log, type RegistryLog } from '@pnpm/core-loggers';
|
|
3
|
+
import { type LogLevel } from '@pnpm/logger';
|
|
4
4
|
import * as Rx from 'rxjs';
|
|
5
5
|
export declare const LOG_LEVEL_NUMBER: Record<LogLevel, number>;
|
|
6
6
|
export declare function reportMisc(log$: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PeerDependencyIssuesLog } from '@pnpm/core-loggers';
|
|
1
|
+
import { type PeerDependencyIssuesLog } from '@pnpm/core-loggers';
|
|
2
2
|
import * as Rx from 'rxjs';
|
|
3
3
|
export declare function reportPeerDependencyIssues(log$: {
|
|
4
4
|
peerDependencyIssues: Rx.Observable<PeerDependencyIssuesLog>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RequestRetryLog } from '@pnpm/core-loggers';
|
|
1
|
+
import { type RequestRetryLog } from '@pnpm/core-loggers';
|
|
2
2
|
import * as Rx from 'rxjs';
|
|
3
3
|
export declare function reportRequestRetry(requestRetry$: Rx.Observable<RequestRetryLog>): Rx.Observable<Rx.Observable<{
|
|
4
4
|
msg: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SkippedOptionalDependencyLog } from '@pnpm/core-loggers';
|
|
1
|
+
import { type SkippedOptionalDependencyLog } from '@pnpm/core-loggers';
|
|
2
2
|
import * as Rx from 'rxjs';
|
|
3
3
|
export declare function reportSkippedOptionalDependencies(skippedOptionalDependency$: Rx.Observable<SkippedOptionalDependencyLog>, opts: {
|
|
4
4
|
cwd: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { DeprecationLog, PackageManifestLog, RootLog, SummaryLog } from '@pnpm/core-loggers';
|
|
3
|
-
import { Config } from '@pnpm/config';
|
|
2
|
+
import { type DeprecationLog, type PackageManifestLog, type RootLog, type SummaryLog } from '@pnpm/core-loggers';
|
|
3
|
+
import { type Config } from '@pnpm/config';
|
|
4
4
|
import * as Rx from 'rxjs';
|
|
5
5
|
export declare function reportSummary(log$: {
|
|
6
6
|
deprecation: Rx.Observable<DeprecationLog>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { UpdateCheckLog } from '@pnpm/core-loggers';
|
|
2
|
+
import { type UpdateCheckLog } from '@pnpm/core-loggers';
|
|
3
3
|
import * as Rx from 'rxjs';
|
|
4
4
|
export declare function reportUpdateCheck(log$: Rx.Observable<UpdateCheckLog>, opts: {
|
|
5
5
|
env: NodeJS.ProcessEnv;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Config } from '@pnpm/config';
|
|
2
|
-
import { Log } from '@pnpm/core-loggers';
|
|
3
|
-
import * as Rx from 'rxjs';
|
|
1
|
+
import { type Config } from '@pnpm/config';
|
|
2
|
+
import { type Log } from '@pnpm/core-loggers';
|
|
3
|
+
import type * as Rx from 'rxjs';
|
|
4
4
|
export declare function reporterForServer(log$: Rx.Observable<Log>, config?: Config): Rx.Subscription;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/default-reporter",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.43",
|
|
4
4
|
"description": "The default reporter of pnpm",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"stacktracey": "^2.1.8",
|
|
38
38
|
"string-length": "^4.0.2",
|
|
39
39
|
"strip-ansi": "^6.0.1",
|
|
40
|
-
"@pnpm/config": "17.0.
|
|
40
|
+
"@pnpm/config": "17.0.3",
|
|
41
|
+
"@pnpm/core-loggers": "8.0.3",
|
|
41
42
|
"@pnpm/error": "4.0.1",
|
|
42
43
|
"@pnpm/render-peer-issues": "3.0.3",
|
|
43
|
-
"@pnpm/types": "8.10.0"
|
|
44
|
-
"@pnpm/core-loggers": "8.0.3"
|
|
44
|
+
"@pnpm/types": "8.10.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/normalize-path": "^3.0.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"ghooks": "2.0.4",
|
|
51
51
|
"load-json-file": "^6.2.0",
|
|
52
52
|
"normalize-newline": "3.0.0",
|
|
53
|
-
"@pnpm/default-reporter": "11.0.
|
|
53
|
+
"@pnpm/default-reporter": "11.0.43"
|
|
54
54
|
},
|
|
55
55
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/cli/default-reporter#readme",
|
|
56
56
|
"funding": "https://opencollective.com/pnpm",
|