@pnpm/cli.default-reporter 1002.0.11
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 +22 -0
- package/README.md +41 -0
- package/lib/constants.d.ts +1 -0
- package/lib/constants.js +4 -0
- package/lib/index.d.ts +54 -0
- package/lib/index.js +230 -0
- package/lib/mergeOutputs.d.ts +4 -0
- package/lib/mergeOutputs.js +69 -0
- package/lib/reportError.d.ts +3 -0
- package/lib/reportError.js +425 -0
- package/lib/reporterForClient/index.d.ts +52 -0
- package/lib/reporterForClient/index.js +94 -0
- package/lib/reporterForClient/outputConstants.d.ts +4 -0
- package/lib/reporterForClient/outputConstants.js +6 -0
- package/lib/reporterForClient/pkgsDiff.d.ts +36 -0
- package/lib/reporterForClient/pkgsDiff.js +113 -0
- package/lib/reporterForClient/reportBigTarballsProgress.d.ts +8 -0
- package/lib/reporterForClient/reportBigTarballsProgress.js +26 -0
- package/lib/reporterForClient/reportContext.d.ts +10 -0
- package/lib/reporterForClient/reportContext.js +34 -0
- package/lib/reporterForClient/reportDeprecations.d.ts +11 -0
- package/lib/reporterForClient/reportDeprecations.js +27 -0
- package/lib/reporterForClient/reportExecutionTime.d.ts +6 -0
- package/lib/reporterForClient/reportExecutionTime.js +13 -0
- package/lib/reporterForClient/reportHooks.d.ts +8 -0
- package/lib/reporterForClient/reportHooks.js +12 -0
- package/lib/reporterForClient/reportIgnoredBuilds.d.ts +11 -0
- package/lib/reporterForClient/reportIgnoredBuilds.js +21 -0
- package/lib/reporterForClient/reportInstallChecks.d.ts +7 -0
- package/lib/reporterForClient/reportInstallChecks.js +19 -0
- package/lib/reporterForClient/reportInstallingConfigDeps.d.ts +5 -0
- package/lib/reporterForClient/reportInstallingConfigDeps.js +18 -0
- package/lib/reporterForClient/reportLifecycleScripts.d.ts +13 -0
- package/lib/reporterForClient/reportLifecycleScripts.js +193 -0
- package/lib/reporterForClient/reportMisc.d.ts +17 -0
- package/lib/reporterForClient/reportMisc.js +69 -0
- package/lib/reporterForClient/reportPeerDependencyIssues.d.ts +7 -0
- package/lib/reporterForClient/reportPeerDependencyIssues.js +16 -0
- package/lib/reporterForClient/reportProgress.d.ts +16 -0
- package/lib/reporterForClient/reportProgress.js +123 -0
- package/lib/reporterForClient/reportRequestRetry.d.ts +5 -0
- package/lib/reporterForClient/reportRequestRetry.js +15 -0
- package/lib/reporterForClient/reportScope.d.ts +8 -0
- package/lib/reporterForClient/reportScope.js +41 -0
- package/lib/reporterForClient/reportSkippedOptionalDependencies.d.ts +7 -0
- package/lib/reporterForClient/reportSkippedOptionalDependencies.js +8 -0
- package/lib/reporterForClient/reportStats.d.ts +13 -0
- package/lib/reporterForClient/reportStats.js +143 -0
- package/lib/reporterForClient/reportSummary.d.ts +19 -0
- package/lib/reporterForClient/reportSummary.js +79 -0
- package/lib/reporterForClient/reportUpdateCheck.d.ts +8 -0
- package/lib/reporterForClient/reportUpdateCheck.js +42 -0
- package/lib/reporterForClient/utils/formatPrefix.d.ts +2 -0
- package/lib/reporterForClient/utils/formatPrefix.js +19 -0
- package/lib/reporterForClient/utils/formatWarn.d.ts +1 -0
- package/lib/reporterForClient/utils/formatWarn.js +8 -0
- package/lib/reporterForClient/utils/zooming.d.ts +4 -0
- package/lib/reporterForClient/utils/zooming.js +13 -0
- package/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pnpm/cli.default-reporter",
|
|
3
|
+
"version": "1002.0.11",
|
|
4
|
+
"description": "The default reporter of pnpm",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pnpm",
|
|
7
|
+
"pnpm11",
|
|
8
|
+
"pnpm-reporter"
|
|
9
|
+
],
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"funding": "https://opencollective.com/pnpm",
|
|
12
|
+
"repository": "https://github.com/pnpm/pnpm/tree/main/cli/default-reporter",
|
|
13
|
+
"homepage": "https://github.com/pnpm/pnpm/tree/main/cli/default-reporter#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/pnpm/pnpm/issues"
|
|
16
|
+
},
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "lib/index.js",
|
|
19
|
+
"types": "lib/index.d.ts",
|
|
20
|
+
"exports": {
|
|
21
|
+
".": "./lib/index.js"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"lib",
|
|
25
|
+
"!*.map"
|
|
26
|
+
],
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@pnpm/util.lex-comparator": "^3.0.2",
|
|
29
|
+
"ansi-diff": "^1.2.0",
|
|
30
|
+
"boxen": "npm:@zkochan/boxen@5.1.2",
|
|
31
|
+
"chalk": "^5.6.0",
|
|
32
|
+
"cli-truncate": "^4.0.0",
|
|
33
|
+
"normalize-path": "^3.0.0",
|
|
34
|
+
"pretty-bytes": "^7.0.1",
|
|
35
|
+
"pretty-ms": "^9.2.0",
|
|
36
|
+
"ramda": "npm:@pnpm/ramda@0.28.1",
|
|
37
|
+
"rxjs": "^7.8.2",
|
|
38
|
+
"semver": "^7.7.2",
|
|
39
|
+
"stacktracey": "^2.1.8",
|
|
40
|
+
"string-length": "^6.0.0",
|
|
41
|
+
"@pnpm/cli.meta": "1000.0.11",
|
|
42
|
+
"@pnpm/config.reader": "1004.4.2",
|
|
43
|
+
"@pnpm/error": "1000.0.5",
|
|
44
|
+
"@pnpm/core-loggers": "1001.0.4",
|
|
45
|
+
"@pnpm/installing.dedupe.issues-renderer": "1000.0.1",
|
|
46
|
+
"@pnpm/installing.dedupe.types": "1000.0.0",
|
|
47
|
+
"@pnpm/installing.render-peer-issues": "1002.0.5",
|
|
48
|
+
"@pnpm/types": "1000.9.0"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"@pnpm/logger": ">=1001.0.0 <1002.0.0"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/normalize-path": "^3.0.2",
|
|
55
|
+
"@types/ramda": "0.29.12",
|
|
56
|
+
"@types/semver": "7.7.1",
|
|
57
|
+
"ghooks": "2.0.4",
|
|
58
|
+
"load-json-file": "^7.0.1",
|
|
59
|
+
"normalize-newline": "4.1.0",
|
|
60
|
+
"@pnpm/logger": "1001.0.1",
|
|
61
|
+
"@pnpm/cli.default-reporter": "1002.0.11"
|
|
62
|
+
},
|
|
63
|
+
"engines": {
|
|
64
|
+
"node": ">=22.13"
|
|
65
|
+
},
|
|
66
|
+
"jest": {
|
|
67
|
+
"preset": "@pnpm/jest-config"
|
|
68
|
+
},
|
|
69
|
+
"scripts": {
|
|
70
|
+
"start": "tsgo --watch",
|
|
71
|
+
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
72
|
+
"_test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --disable-warning=ExperimentalWarning --disable-warning=DEP0169\" jest",
|
|
73
|
+
"test": "pnpm run compile && pnpm run _test",
|
|
74
|
+
"compile": "tsgo --build && pnpm run lint --fix"
|
|
75
|
+
}
|
|
76
|
+
}
|