pnpm 6.32.3 → 6.32.4

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pnpm",
3
3
  "description": "Fast, disk space efficient package manager",
4
- "version": "6.32.3",
4
+ "version": "6.32.4",
5
5
  "bin": {
6
6
  "pnpm": "bin/pnpm.cjs",
7
7
  "pnpx": "bin/pnpx.cjs"
@@ -22,7 +22,7 @@
22
22
  "@pnpm/assert-project": "workspace:*",
23
23
  "@pnpm/byline": "^1.0.0",
24
24
  "@pnpm/cli-meta": "workspace:2.0.2",
25
- "@pnpm/cli-utils": "workspace:0.6.50",
25
+ "@pnpm/cli-utils": "workspace:0.6.51",
26
26
  "@pnpm/client": "workspace:6.1.3",
27
27
  "@pnpm/command": "workspace:2.0.0",
28
28
  "@pnpm/common-cli-options-help": "workspace:0.8.0",
@@ -31,26 +31,26 @@
31
31
  "@pnpm/core-loggers": "workspace:6.1.4",
32
32
  "@pnpm/default-reporter": "workspace:8.5.13",
33
33
  "@pnpm/file-reporter": "workspace:2.0.0",
34
- "@pnpm/filter-workspace-packages": "workspace:4.4.22",
34
+ "@pnpm/filter-workspace-packages": "workspace:4.4.23",
35
35
  "@pnpm/find-workspace-dir": "workspace:3.0.2",
36
- "@pnpm/find-workspace-packages": "workspace:3.1.42",
36
+ "@pnpm/find-workspace-packages": "workspace:3.1.43",
37
37
  "@pnpm/lockfile-types": "workspace:3.2.0",
38
38
  "@pnpm/logger": "^4.0.0",
39
39
  "@pnpm/modules-yaml": "workspace:9.1.1",
40
40
  "@pnpm/nopt": "^0.2.1",
41
41
  "@pnpm/parse-cli-args": "workspace:4.4.1",
42
42
  "@pnpm/pick-registry-for-package": "workspace:2.0.11",
43
- "@pnpm/plugin-commands-audit": "workspace:5.1.42",
44
- "@pnpm/plugin-commands-env": "workspace:1.4.14",
45
- "@pnpm/plugin-commands-installation": "workspace:8.4.4",
46
- "@pnpm/plugin-commands-listing": "workspace:4.1.11",
47
- "@pnpm/plugin-commands-outdated": "workspace:5.1.10",
48
- "@pnpm/plugin-commands-publishing": "workspace:4.5.2",
49
- "@pnpm/plugin-commands-rebuild": "workspace:5.4.14",
50
- "@pnpm/plugin-commands-script-runners": "workspace:4.6.2",
51
- "@pnpm/plugin-commands-server": "workspace:3.0.70",
52
- "@pnpm/plugin-commands-setup": "workspace:1.1.35",
53
- "@pnpm/plugin-commands-store": "workspace:4.1.13",
43
+ "@pnpm/plugin-commands-audit": "workspace:5.1.43",
44
+ "@pnpm/plugin-commands-env": "workspace:1.4.15",
45
+ "@pnpm/plugin-commands-installation": "workspace:8.4.5",
46
+ "@pnpm/plugin-commands-listing": "workspace:4.1.12",
47
+ "@pnpm/plugin-commands-outdated": "workspace:5.1.11",
48
+ "@pnpm/plugin-commands-publishing": "workspace:4.5.3",
49
+ "@pnpm/plugin-commands-rebuild": "workspace:5.4.15",
50
+ "@pnpm/plugin-commands-script-runners": "workspace:4.6.3",
51
+ "@pnpm/plugin-commands-server": "workspace:3.0.71",
52
+ "@pnpm/plugin-commands-setup": "workspace:1.1.36",
53
+ "@pnpm/plugin-commands-store": "workspace:4.1.14",
54
54
  "@pnpm/prepare": "workspace:*",
55
55
  "@pnpm/read-package-json": "workspace:5.0.12",
56
56
  "@pnpm/read-project-manifest": "workspace:2.0.13",
@@ -1,45 +0,0 @@
1
- var Gauge = require('./')
2
- var gaugeDefault = require('./themes.js')
3
- var onExit = require('signal-exit')
4
-
5
- var activeGauge
6
-
7
- onExit(function () {
8
- activeGauge.disable()
9
- })
10
-
11
- var themes = gaugeDefault.getThemeNames()
12
-
13
- nextBar()
14
- function nextBar () {
15
- var themeName = themes.shift()
16
-
17
- console.log('Demoing output for ' + themeName)
18
-
19
- var gt = new Gauge(process.stderr, {
20
- updateInterval: 50,
21
- theme: themeName,
22
- cleanupOnExit: false,
23
- })
24
- activeGauge = gt
25
-
26
- var progress = 0
27
-
28
- var cnt = 0
29
- var pulse = setInterval(function () {
30
- gt.pulse('this is a thing that happened ' + (++cnt))
31
- }, 110)
32
- var prog = setInterval(function () {
33
- progress += 0.04
34
- gt.show(themeName + ':' + Math.round(progress * 1000), progress)
35
- if (progress >= 1) {
36
- clearInterval(prog)
37
- clearInterval(pulse)
38
- gt.disable()
39
- if (themes.length) {
40
- nextBar()
41
- }
42
- }
43
- }, 100)
44
- gt.show()
45
- }