gtfs-to-html 2.11.2 → 2.11.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/dist/app/index.js +27 -19
- package/dist/app/index.js.map +1 -1
- package/dist/bin/gtfs-to-html.js +28 -20
- package/dist/bin/gtfs-to-html.js.map +1 -1
- package/dist/index.d.ts +19 -2
- package/dist/index.js +28 -20
- package/dist/index.js.map +1 -1
- package/package.json +13 -11
- package/views/default/formatting_functions.pug +1 -1
- package/views/default/js/system-map.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtfs-to-html",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Build human readable transit timetables as HTML, PDF or CSV from GTFS",
|
|
6
6
|
"keywords": [
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"Holly Kvalheim",
|
|
26
26
|
"Pawajoro",
|
|
27
27
|
"Andrea Mignone",
|
|
28
|
-
"Evo Stamatov"
|
|
28
|
+
"Evo Stamatov",
|
|
29
|
+
"Sebastian Knopf"
|
|
29
30
|
],
|
|
30
31
|
"type": "module",
|
|
31
32
|
"main": "./dist/index.js",
|
|
@@ -53,16 +54,16 @@
|
|
|
53
54
|
"cli-table": "^0.3.11",
|
|
54
55
|
"csv-stringify": "^6.6.0",
|
|
55
56
|
"express": "^5.1.0",
|
|
56
|
-
"gtfs": "^4.18.
|
|
57
|
+
"gtfs": "^4.18.1",
|
|
57
58
|
"gtfs-realtime-pbf-js-module": "^1.0.0",
|
|
58
59
|
"js-beautify": "^1.15.4",
|
|
59
60
|
"lodash-es": "^4.17.21",
|
|
60
|
-
"marked": "^16.
|
|
61
|
+
"marked": "^16.4.1",
|
|
61
62
|
"moment": "^2.30.1",
|
|
62
63
|
"pbf": "^4.0.1",
|
|
63
64
|
"pretty-error": "^4.0.0",
|
|
64
65
|
"pug": "^3.0.3",
|
|
65
|
-
"puppeteer": "^24.
|
|
66
|
+
"puppeteer": "^24.26.1",
|
|
66
67
|
"sanitize-filename": "^1.6.3",
|
|
67
68
|
"sanitize-html": "^2.17.0",
|
|
68
69
|
"sqlstring": "^2.3.3",
|
|
@@ -71,23 +72,24 @@
|
|
|
71
72
|
"yoctocolors": "^2.1.2"
|
|
72
73
|
},
|
|
73
74
|
"devDependencies": {
|
|
74
|
-
"@types/archiver": "^
|
|
75
|
-
"@types/
|
|
75
|
+
"@types/archiver": "^7.0.0",
|
|
76
|
+
"@types/cli-table": "^0.3.4",
|
|
77
|
+
"@types/express": "^5.0.4",
|
|
76
78
|
"@types/insane": "^1.0.0",
|
|
77
79
|
"@types/js-beautify": "^1.14.3",
|
|
78
80
|
"@types/lodash-es": "^4.17.12",
|
|
79
81
|
"@types/morgan": "^1.9.10",
|
|
80
|
-
"@types/node": "^
|
|
82
|
+
"@types/node": "^24",
|
|
81
83
|
"@types/pug": "^2.0.10",
|
|
82
84
|
"@types/sanitize-html": "^2.16.0",
|
|
83
85
|
"@types/sqlstring": "^2.3.2",
|
|
84
86
|
"@types/toposort": "^2.0.7",
|
|
85
|
-
"@types/yargs": "^17.0.
|
|
87
|
+
"@types/yargs": "^17.0.34",
|
|
86
88
|
"husky": "^9.1.7",
|
|
87
|
-
"lint-staged": "^16.
|
|
89
|
+
"lint-staged": "^16.2.6",
|
|
88
90
|
"prettier": "^3.6.2",
|
|
89
91
|
"tsup": "^8.5.0",
|
|
90
|
-
"typescript": "^5.9.
|
|
92
|
+
"typescript": "^5.9.3"
|
|
91
93
|
},
|
|
92
94
|
"engines": {
|
|
93
95
|
"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.
|
|
119
|
+
tripIds: _.uniq(_.flatMap(timetablePage.consolidatedTimetables, timetable => timetable.trip_ids)),
|
|
120
120
|
stopIds: Object.keys(stopData),
|
|
121
121
|
geojsons,
|
|
122
122
|
},
|