console2svg 0.8.1 → 0.8.3

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.
@@ -11,7 +11,7 @@ const binPath = path.join(__dirname, '..', 'dist', `console2svg${ext}`);
11
11
 
12
12
  if (!fs.existsSync(binPath)) {
13
13
  console.error('console2svg: binary not found.');
14
- console.error('Reinstall the package or use the .NET tool.');
14
+ console.error('Reinstall the package or use a release archive.');
15
15
  process.exit(1);
16
16
  }
17
17
 
package/cli/install.js CHANGED
@@ -21,7 +21,7 @@ const archSuffix =
21
21
 
22
22
  if (!archSuffix) {
23
23
  console.error(`console2svg: unsupported architecture: ${arch}`);
24
- console.error('Use the .NET tool or build from source for this platform.');
24
+ console.error('Use a release archive or build from source for this platform.');
25
25
  process.exit(1);
26
26
  }
27
27
 
@@ -34,7 +34,7 @@ if (platform === 'win32') {
34
34
  rid = `osx-${archSuffix}`;
35
35
  } else {
36
36
  console.error(`console2svg: unsupported platform: ${platform}`);
37
- console.error('Use the .NET tool or build from source for this platform.');
37
+ console.error('Use a release archive or build from source for this platform.');
38
38
  process.exit(1);
39
39
  }
40
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "console2svg",
3
- "version": "0.8.1",
3
+ "version": "0.8.3",
4
4
  "description": "Convert terminal output into SVG images",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {