@pnpm/plugin-commands-setup 2.0.26 → 2.0.27

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.
Files changed (2) hide show
  1. package/lib/setup.js +2 -2
  2. package/package.json +4 -4
package/lib/setup.js CHANGED
@@ -87,7 +87,7 @@ async function handler(opts) {
87
87
  exports.handler = handler;
88
88
  function renderSetupOutput(report) {
89
89
  if (report.oldSettings === report.newSettings) {
90
- return 'No changes to the environment were made. Everything is already up-to-date.';
90
+ return 'No changes to the environment were made. Everything is already up to date.';
91
91
  }
92
92
  const output = [];
93
93
  if (report.configFile) {
@@ -103,7 +103,7 @@ function reportConfigChange(configReport) {
103
103
  case 'created': return `Created ${configReport.path}`;
104
104
  case 'appended': return `Appended new lines to ${configReport.path}`;
105
105
  case 'modified': return `Replaced configuration in ${configReport.path}`;
106
- case 'skipped': return `Configuration already up-to-date in ${configReport.path}`;
106
+ case 'skipped': return `Configuration already up to date in ${configReport.path}`;
107
107
  }
108
108
  }
109
109
  //# sourceMappingURL=setup.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/plugin-commands-setup",
3
- "version": "2.0.26",
3
+ "version": "2.0.27",
4
4
  "description": "pnpm commands for setting up pnpm",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "homepage": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-setup#readme",
25
25
  "dependencies": {
26
- "@pnpm/cli-utils": "0.7.25",
26
+ "@pnpm/cli-utils": "0.7.26",
27
27
  "@pnpm/os.env.path-extender": "^0.2.5",
28
28
  "render-help": "^1.0.2"
29
29
  },
@@ -34,8 +34,8 @@
34
34
  "devDependencies": {
35
35
  "@pnpm/error": "3.0.1",
36
36
  "@pnpm/logger": "^4.0.0",
37
- "@pnpm/plugin-commands-setup": "2.0.26",
38
- "@pnpm/prepare": "0.0.47"
37
+ "@pnpm/plugin-commands-setup": "2.0.27",
38
+ "@pnpm/prepare": "0.0.48"
39
39
  },
40
40
  "exports": {
41
41
  ".": "./lib/index.js"