node-red-contrib-web-worldmap 5.6.1 → 5.6.2

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.
@@ -94,6 +94,7 @@ function pathToRegexp(path, keys, options) {
94
94
  pos = offset + match.length;
95
95
 
96
96
  if (match === '*') {
97
+ backtrack = '';
97
98
  extraOffset += 3;
98
99
  return '(.*)';
99
100
  }
@@ -123,6 +124,7 @@ function pathToRegexp(path, keys, options) {
123
124
  + ')'
124
125
  + optional;
125
126
 
127
+ backtrack = '';
126
128
  extraOffset += result.length - match.length;
127
129
 
128
130
  return result;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "path-to-regexp",
3
3
  "description": "Express style path to RegExp utility",
4
- "version": "0.1.12",
4
+ "version": "0.1.13",
5
5
  "files": [
6
6
  "index.js",
7
7
  "LICENSE"
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "node-red-contrib-web-worldmap",
3
- "version": "5.6.1",
3
+ "version": "5.6.2",
4
4
  "description": "A Node-RED node to provide a web page of a world map for plotting things on.",
5
5
  "dependencies": {
6
- "@turf/bezier-spline": "~7.3.4",
6
+ "@turf/bezier-spline": "7.3.4",
7
7
  "cgi": "0.3.1",
8
- "compression": "^1.8.1",
9
- "express": "^4.22.1",
10
- "sockjs": "~0.3.24"
8
+ "compression": "1.8.1",
9
+ "express": "4.22.1",
10
+ "sockjs": "0.3.24"
11
11
  },
12
12
  "overrides": {
13
13
  "express": {
14
14
  "body-parser": {
15
- "qs": "^6.14.2"
15
+ "qs": "6.14.2"
16
16
  }
17
17
  }
18
18
  },
package/worldmap.js CHANGED
@@ -270,7 +270,7 @@ module.exports = function(RED) {
270
270
  ui = RED.require("node-red-dashboard")(RED);
271
271
  }
272
272
  catch(e) {
273
- RED.log.info("Node-RED Dashboard 1 not found - ui_worldmap node not installed.");
273
+ // RED.log.info("Node-RED Dashboard 1 not found - ui_worldmap node not installed.");
274
274
  }
275
275
  setTimeout( function() {
276
276
  if (ui) {