logtunnel 1.1.0 → 1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/main.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "logtunnel",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "CLI tool that allows you to format, filter and search your log output",
5
5
  "main": "src/main.js",
6
6
  "bin": {
package/src/main.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  const semver = require('semver');
3
- if(!semver.satisfies(process.version, '>=12')) {
4
- console.error(`Your NodeJS version (${process.version}) is too old for logtunnel :(\nUse at least NodeJS 12`);
3
+ if(!semver.satisfies(process.version, '>=16')) {
4
+ console.error(`Your NodeJS version (${process.version}) is too old for logtunnel :(\nUse at least NodeJS 16`);
5
5
  process.exit(1);
6
6
  }
7
7