tiro-notes 0.27.34 → 0.27.37

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/cli.js CHANGED
@@ -106,7 +106,7 @@ const startSshTunnel = (argsObj) => {
106
106
  if (!cb1) return
107
107
  cb1 = false
108
108
  // start autossh finally
109
- tHelpers.execCmd('autossh',['-M','20000','-N', argsObj.tunnel.remoteUrl,'-R', `${argsObj.tunnel.remotePort}:localhost:${argsObj.port}`,'-C'], {
109
+ tHelpers.execCmd('autossh',['-M',`2${argsObj.port}`,'-N', argsObj.tunnel.remoteUrl,'-R', `${argsObj.tunnel.remotePort}:localhost:${argsObj.port}`,'-C'], {
110
110
  logName:'tunnel 3/3'
111
111
  })
112
112
  }
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "tiro-notes",
3
- "version": "0.27.34",
3
+ "version": "0.27.37",
4
4
  "description": "Tiro Notes CLI to start Tiro Notes from the command line!",
5
5
  "scripts": {
6
+ "dev": "ISDEV=true node cli.js",
6
7
  "clean-previous-build": "rm -r node-build",
7
8
  "export-cli-module": "cp -r ../../build node-build; cp cli.js node-build/; cp package.json node-build/; ",
8
9
  "export-helpers": "cp ../shared.helpers.js ./node-build/shared.helpers.build.js",