gtfs-to-html 2.12.3 → 2.12.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtfs-to-html",
3
- "version": "2.12.3",
3
+ "version": "2.12.4",
4
4
  "private": false,
5
5
  "description": "Build human readable transit timetables as HTML, PDF or CSV from GTFS",
6
6
  "keywords": [
@@ -50,26 +50,26 @@
50
50
  "postinstall": "node scripts/postinstall.js"
51
51
  },
52
52
  "dependencies": {
53
- "@maplibre/maplibre-gl-geocoder": "^1.9.1",
54
- "@turf/helpers": "^7.3.1",
55
- "@turf/simplify": "^7.3.1",
53
+ "@maplibre/maplibre-gl-geocoder": "^1.9.4",
54
+ "@turf/helpers": "^7.3.2",
55
+ "@turf/simplify": "^7.3.2",
56
56
  "anchorme": "^3.0.8",
57
57
  "archiver": "^7.0.1",
58
58
  "cli-table": "^0.3.11",
59
59
  "css.escape": "^1.5.1",
60
60
  "csv-stringify": "^6.6.0",
61
61
  "express": "^5.2.1",
62
- "gtfs": "^4.18.2",
62
+ "gtfs": "^4.18.3",
63
63
  "gtfs-realtime-pbf-js-module": "^1.0.0",
64
64
  "js-beautify": "^1.15.4",
65
- "lodash-es": "^4.17.21",
66
- "maplibre-gl": "^5.14.0",
65
+ "lodash-es": "^4.17.23",
66
+ "maplibre-gl": "^5.16.0",
67
67
  "marked": "^17.0.1",
68
68
  "moment": "^2.30.1",
69
69
  "pbf": "^4.0.1",
70
70
  "pretty-error": "^4.0.0",
71
71
  "pug": "^3.0.3",
72
- "puppeteer": "^24.32.0",
72
+ "puppeteer": "^24.35.0",
73
73
  "sanitize-filename": "^1.6.3",
74
74
  "sanitize-html": "^2.17.0",
75
75
  "sqlstring": "^2.3.3",
@@ -85,7 +85,7 @@
85
85
  "@types/js-beautify": "^1.14.3",
86
86
  "@types/lodash-es": "^4.17.12",
87
87
  "@types/morgan": "^1.9.10",
88
- "@types/node": "^24",
88
+ "@types/node": "^25",
89
89
  "@types/pug": "^2.0.10",
90
90
  "@types/sanitize-html": "^2.16.0",
91
91
  "@types/sqlstring": "^2.3.2",
@@ -93,7 +93,7 @@
93
93
  "@types/yargs": "^17.0.35",
94
94
  "husky": "^9.1.7",
95
95
  "lint-staged": "^16.2.7",
96
- "prettier": "^3.7.4",
96
+ "prettier": "^3.8.1",
97
97
  "tsup": "^8.5.1",
98
98
  "typescript": "^5.9.3"
99
99
  },
@@ -645,7 +645,7 @@ a:hover {
645
645
 
646
646
  .timetable-page .timetable-alert {
647
647
  background-color: rgb(224, 230, 245);
648
- padding: 0.75rem 1.25rem;
648
+ padding: 0.65rem 1.25rem;
649
649
  border-radius: 0.5rem;
650
650
  }
651
651
 
@@ -134,7 +134,7 @@
134
134
  }
135
135
 
136
136
  function formatTripName(trip, index, timetable) {
137
- let tripName;
137
+ let tripName = '';
138
138
  if (timetable.routes.length > 1) {
139
139
  tripName = trip.route_short_name;
140
140
  } else if (timetable.orientation === 'horizontal') {