@pnpm/core-loggers 8.0.3 → 9.0.0
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/LICENSE +1 -1
- package/lib/contextLogger.d.ts +1 -1
- package/lib/deprecationLogger.d.ts +1 -1
- package/lib/executionTimeLogger.d.ts +1 -1
- package/lib/fetchingProgressLogger.d.ts +1 -1
- package/lib/hookLogger.d.ts +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/installCheckLogger.d.ts +1 -1
- package/lib/lifecycleLogger.d.ts +1 -1
- package/lib/linkLogger.d.ts +1 -1
- package/lib/packageImportMethodLogger.d.ts +1 -1
- package/lib/packageManifestLogger.d.ts +2 -2
- package/lib/peerDependencyIssues.d.ts +2 -2
- package/lib/progressLogger.d.ts +1 -1
- package/lib/registryLogger.d.ts +1 -1
- package/lib/requestRetryLogger.d.ts +1 -1
- package/lib/rootLogger.d.ts +1 -1
- package/lib/scopeLogger.d.ts +1 -1
- package/lib/skippedOptionalDependencyLogger.d.ts +1 -1
- package/lib/stageLogger.d.ts +1 -1
- package/lib/statsLogger.d.ts +1 -1
- package/lib/summaryLogger.d.ts +1 -1
- package/lib/updateCheckLogger.d.ts +1 -1
- package/package.json +6 -6
package/LICENSE
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
3
|
Copyright (c) 2015-2016 Rico Sta. Cruz and other contributors
|
|
4
|
-
Copyright (c) 2016-
|
|
4
|
+
Copyright (c) 2016-2023 Zoltan Kochan and other contributors
|
|
5
5
|
|
|
6
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
of this software and associated documentation files (the "Software"), to deal
|
package/lib/contextLogger.d.ts
CHANGED
package/lib/hookLogger.d.ts
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ContextLog, DeprecationLog, FetchingProgressLog, ExecutionTimeLog, HookLog, InstallCheckLog, LifecycleLog, LinkLog, PackageImportMethodLog, PackageManifestLog, PeerDependencyIssuesLog, ProgressLog, RegistryLog, RequestRetryLog, RootLog, ScopeLog, SkippedOptionalDependencyLog, StageLog, StatsLog, SummaryLog, UpdateCheckLog } from './all';
|
|
1
|
+
import { type ContextLog, type DeprecationLog, type FetchingProgressLog, type ExecutionTimeLog, type HookLog, type InstallCheckLog, type LifecycleLog, type LinkLog, type PackageImportMethodLog, type PackageManifestLog, type PeerDependencyIssuesLog, type ProgressLog, type RegistryLog, type RequestRetryLog, type RootLog, type ScopeLog, type SkippedOptionalDependencyLog, type StageLog, type StatsLog, type SummaryLog, type UpdateCheckLog } from './all';
|
|
2
2
|
export * from './all';
|
|
3
3
|
export type Log = ContextLog | DeprecationLog | FetchingProgressLog | ExecutionTimeLog | HookLog | InstallCheckLog | LifecycleLog | LinkLog | PackageManifestLog | PackageImportMethodLog | PeerDependencyIssuesLog | ProgressLog | RegistryLog | RequestRetryLog | RootLog | ScopeLog | SkippedOptionalDependencyLog | StageLog | StatsLog | SummaryLog | UpdateCheckLog;
|
package/lib/lifecycleLogger.d.ts
CHANGED
package/lib/linkLogger.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { LogBase } from '@pnpm/logger';
|
|
2
|
-
import { ProjectManifest } from '@pnpm/types';
|
|
1
|
+
import { type LogBase } from '@pnpm/logger';
|
|
2
|
+
import { type ProjectManifest } from '@pnpm/types';
|
|
3
3
|
export declare const packageManifestLogger: import("@pnpm/logger").Logger<PackageManifestMessage>;
|
|
4
4
|
export type PackageManifestMessage = {
|
|
5
5
|
prefix: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { LogBase, Logger } from '@pnpm/logger';
|
|
2
|
-
import { PeerDependencyIssuesByProjects } from '@pnpm/types';
|
|
1
|
+
import { type LogBase, type Logger } from '@pnpm/logger';
|
|
2
|
+
import { type PeerDependencyIssuesByProjects } from '@pnpm/types';
|
|
3
3
|
export declare const peerDependencyIssuesLogger: Logger<PeerDependencyIssuesMessage>;
|
|
4
4
|
export interface PeerDependencyIssuesMessage {
|
|
5
5
|
issuesByProjects: PeerDependencyIssuesByProjects;
|
package/lib/progressLogger.d.ts
CHANGED
package/lib/registryLogger.d.ts
CHANGED
package/lib/rootLogger.d.ts
CHANGED
package/lib/scopeLogger.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LogBase } from '@pnpm/logger';
|
|
1
|
+
import { type LogBase } from '@pnpm/logger';
|
|
2
2
|
export declare const skippedOptionalDependencyLogger: import("@pnpm/logger").Logger<SkippedOptionalDependencyMessage>;
|
|
3
3
|
export type SkippedOptionalDependencyLog = {
|
|
4
4
|
name: 'pnpm:skipped-optional-dependency';
|
package/lib/stageLogger.d.ts
CHANGED
package/lib/statsLogger.d.ts
CHANGED
package/lib/summaryLogger.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/core-loggers",
|
|
3
3
|
"description": "Core loggers of pnpm",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "9.0.0",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
7
7
|
},
|
|
@@ -15,21 +15,21 @@
|
|
|
15
15
|
"@pnpm/logger": "^5.0.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@pnpm/core-loggers": "
|
|
18
|
+
"@pnpm/core-loggers": "9.0.0"
|
|
19
19
|
},
|
|
20
20
|
"directories": {
|
|
21
21
|
"test": "test"
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
24
|
-
"
|
|
24
|
+
"pnpm8"
|
|
25
25
|
],
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"engines": {
|
|
28
|
-
"node": ">=14
|
|
28
|
+
"node": ">=16.14"
|
|
29
29
|
},
|
|
30
30
|
"repository": "https://github.com/pnpm/pnpm/blob/main/packages/core-loggers",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@pnpm/types": "
|
|
32
|
+
"@pnpm/types": "9.0.0"
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/core-loggers#readme",
|
|
35
35
|
"funding": "https://opencollective.com/pnpm",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"scripts": {
|
|
40
40
|
"start": "tsc --watch",
|
|
41
41
|
"test": "pnpm run compile",
|
|
42
|
-
"lint": "eslint src/**/*.ts",
|
|
42
|
+
"lint": "eslint \"src/**/*.ts\"",
|
|
43
43
|
"compile": "tsc --build && pnpm run lint --fix"
|
|
44
44
|
}
|
|
45
45
|
}
|