tiro-notes 0.30.98-92 → 0.30.98-93

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/cli.js +1 -1
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -77,7 +77,7 @@ function getCliArgs () {
77
77
  if (argName === 's' || argName === 'https') argsObj.https = true
78
78
  if (argName === 'h' || argName === 'help') argsObj.help = true
79
79
  if (argName === 'no-open' || argName === 'no') argsObj.open = false
80
- if (argName === 'v' || argName === 'verbose') argsObj.verbose = argVal
80
+ if (argName === 'v' || argName === 'verbose') argsObj.verbose = parseInt(argVal)
81
81
 
82
82
  if (argName === 'b' || argName === 'backup') argsObj.backup.enabled = true
83
83
  if (argName === 'backup-location') argsObj.backup.location = argVal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tiro-notes",
3
- "version": "0.30.98-92",
3
+ "version": "0.30.98-93",
4
4
  "description": "Tiro Notes CLI to start Tiro Notes from the command line!",
5
5
  "scripts": {
6
6
  "dev": "ISDEV=true node cli.js",