@pnpm/core-loggers 1000.0.0 → 1000.1.1
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/all.d.ts +1 -0
- package/lib/all.js +1 -0
- package/lib/all.js.map +1 -1
- package/lib/ignoredScriptsLogger.d.ts +8 -0
- package/lib/ignoredScriptsLogger.js +6 -0
- package/lib/ignoredScriptsLogger.js.map +1 -0
- package/lib/index.d.ts +2 -2
- package/lib/index.js.map +1 -1
- package/package.json +4 -4
package/lib/all.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from './deprecationLogger';
|
|
|
3
3
|
export * from './fetchingProgressLogger';
|
|
4
4
|
export * from './hookLogger';
|
|
5
5
|
export * from './installCheckLogger';
|
|
6
|
+
export * from './ignoredScriptsLogger';
|
|
6
7
|
export * from './lifecycleLogger';
|
|
7
8
|
export * from './linkLogger';
|
|
8
9
|
export * from './packageImportMethodLogger';
|
package/lib/all.js
CHANGED
|
@@ -19,6 +19,7 @@ __exportStar(require("./deprecationLogger"), exports);
|
|
|
19
19
|
__exportStar(require("./fetchingProgressLogger"), exports);
|
|
20
20
|
__exportStar(require("./hookLogger"), exports);
|
|
21
21
|
__exportStar(require("./installCheckLogger"), exports);
|
|
22
|
+
__exportStar(require("./ignoredScriptsLogger"), exports);
|
|
22
23
|
__exportStar(require("./lifecycleLogger"), exports);
|
|
23
24
|
__exportStar(require("./linkLogger"), exports);
|
|
24
25
|
__exportStar(require("./packageImportMethodLogger"), exports);
|
package/lib/all.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"all.js","sourceRoot":"","sources":["../src/all.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAA+B;AAC/B,sDAAmC;AACnC,2DAAwC;AACxC,+CAA4B;AAC5B,uDAAoC;AACpC,oDAAiC;AACjC,+CAA4B;AAC5B,8DAA2C;AAC3C,0DAAuC;AACvC,yDAAsC;AACtC,mDAAgC;AAChC,mDAAgC;AAChC,kDAA+B;AAC/B,uDAAoC;AACpC,+CAA4B;AAC5B,gDAA6B;AAC7B,oEAAiD;AACjD,gDAA6B;AAC7B,gDAA6B;AAC7B,kDAA+B;AAC/B,sDAAmC;AACnC,wDAAqC"}
|
|
1
|
+
{"version":3,"file":"all.js","sourceRoot":"","sources":["../src/all.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAA+B;AAC/B,sDAAmC;AACnC,2DAAwC;AACxC,+CAA4B;AAC5B,uDAAoC;AACpC,yDAAsC;AACtC,oDAAiC;AACjC,+CAA4B;AAC5B,8DAA2C;AAC3C,0DAAuC;AACvC,yDAAsC;AACtC,mDAAgC;AAChC,mDAAgC;AAChC,kDAA+B;AAC/B,uDAAoC;AACpC,+CAA4B;AAC5B,gDAA6B;AAC7B,oEAAiD;AACjD,gDAA6B;AAC7B,gDAA6B;AAC7B,kDAA+B;AAC/B,sDAAmC;AACnC,wDAAqC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type LogBase } from '@pnpm/logger';
|
|
2
|
+
export declare const ignoredScriptsLogger: import("@pnpm/logger").Logger<unknown>;
|
|
3
|
+
export interface IgnoredScriptsMessage {
|
|
4
|
+
packageNames: string[];
|
|
5
|
+
}
|
|
6
|
+
export type IgnoredScriptsLog = {
|
|
7
|
+
name: 'pnpm:ignored-scripts';
|
|
8
|
+
} & LogBase & IgnoredScriptsMessage;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ignoredScriptsLogger = void 0;
|
|
4
|
+
const logger_1 = require("@pnpm/logger");
|
|
5
|
+
exports.ignoredScriptsLogger = (0, logger_1.logger)('ignored-scripts');
|
|
6
|
+
//# sourceMappingURL=ignoredScriptsLogger.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ignoredScriptsLogger.js","sourceRoot":"","sources":["../src/ignoredScriptsLogger.ts"],"names":[],"mappings":";;;AAAA,yCAGqB;AAER,QAAA,oBAAoB,GAAG,IAAA,eAAM,EAAC,iBAAiB,CAAC,CAAA"}
|
package/lib/index.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
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';
|
|
1
|
+
import { type ContextLog, type DeprecationLog, type FetchingProgressLog, type ExecutionTimeLog, type HookLog, type InstallCheckLog, type IgnoredScriptsLog, 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
|
-
export type Log = ContextLog | DeprecationLog | FetchingProgressLog | ExecutionTimeLog | HookLog | InstallCheckLog | LifecycleLog | LinkLog | PackageManifestLog | PackageImportMethodLog | PeerDependencyIssuesLog | ProgressLog | RegistryLog | RequestRetryLog | RootLog | ScopeLog | SkippedOptionalDependencyLog | StageLog | StatsLog | SummaryLog | UpdateCheckLog;
|
|
3
|
+
export type Log = ContextLog | DeprecationLog | FetchingProgressLog | ExecutionTimeLog | HookLog | InstallCheckLog | IgnoredScriptsLog | LifecycleLog | LinkLog | PackageManifestLog | PackageImportMethodLog | PeerDependencyIssuesLog | ProgressLog | RegistryLog | RequestRetryLog | RootLog | ScopeLog | SkippedOptionalDependencyLog | StageLog | StatsLog | SummaryLog | UpdateCheckLog;
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAyBA,wCAAqB"}
|
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": "1000.
|
|
4
|
+
"version": "1000.1.1",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
7
7
|
},
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"@pnpm/logger": ">=5.1.0 <1001.0.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@pnpm/
|
|
19
|
-
"@pnpm/
|
|
18
|
+
"@pnpm/logger": "1000.0.0",
|
|
19
|
+
"@pnpm/core-loggers": "1000.1.1"
|
|
20
20
|
},
|
|
21
21
|
"directories": {
|
|
22
22
|
"test": "test"
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"repository": "https://github.com/pnpm/pnpm/blob/main/packages/core-loggers",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@pnpm/types": "1000.
|
|
33
|
+
"@pnpm/types": "1000.1.0"
|
|
34
34
|
},
|
|
35
35
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/core-loggers#readme",
|
|
36
36
|
"funding": "https://opencollective.com/pnpm",
|