gtfs-to-html 2.11.2 → 2.11.3

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.11.2",
3
+ "version": "2.11.3",
4
4
  "private": false,
5
5
  "description": "Build human readable transit timetables as HTML, PDF or CSV from GTFS",
6
6
  "keywords": [
@@ -62,7 +62,7 @@
62
62
  "pbf": "^4.0.1",
63
63
  "pretty-error": "^4.0.0",
64
64
  "pug": "^3.0.3",
65
- "puppeteer": "^24.21.0",
65
+ "puppeteer": "^24.23.0",
66
66
  "sanitize-filename": "^1.6.3",
67
67
  "sanitize-html": "^2.17.0",
68
68
  "sqlstring": "^2.3.3",
@@ -72,22 +72,23 @@
72
72
  },
73
73
  "devDependencies": {
74
74
  "@types/archiver": "^6.0.3",
75
+ "@types/cli-table": "^0.3.4",
75
76
  "@types/express": "^5.0.3",
76
77
  "@types/insane": "^1.0.0",
77
78
  "@types/js-beautify": "^1.14.3",
78
79
  "@types/lodash-es": "^4.17.12",
79
80
  "@types/morgan": "^1.9.10",
80
- "@types/node": "^22",
81
+ "@types/node": "^24",
81
82
  "@types/pug": "^2.0.10",
82
83
  "@types/sanitize-html": "^2.16.0",
83
84
  "@types/sqlstring": "^2.3.2",
84
85
  "@types/toposort": "^2.0.7",
85
86
  "@types/yargs": "^17.0.33",
86
87
  "husky": "^9.1.7",
87
- "lint-staged": "^16.1.6",
88
+ "lint-staged": "^16.2.3",
88
89
  "prettier": "^3.6.2",
89
90
  "tsup": "^8.5.0",
90
- "typescript": "^5.9.2"
91
+ "typescript": "^5.9.3"
91
92
  },
92
93
  "engines": {
93
94
  "node": ">= 22"
@@ -116,7 +116,7 @@
116
116
  mapStyleUrl: config.mapStyleUrl,
117
117
  pageData: {
118
118
  routeIds: _.uniq(_.flatMap(timetablePage.consolidatedTimetables, timetable => timetable.routes.map(route => route.route_id))),
119
- tripIds: _.uniq(_.flatMap(timetablePage.consolidatedTimetables, timetable => timetable.orderedTrips.map(trip => trip.trip_id))),
119
+ tripIds: _.uniq(_.flatMap(timetablePage.consolidatedTimetables, timetable => timetable.trip_ids)),
120
120
  stopIds: Object.keys(stopData),
121
121
  geojsons,
122
122
  },