gtfs-to-html 2.10.15 → 2.10.17
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/README.md +37 -33
- package/dist/app/index.js +7 -7
- package/dist/app/index.js.map +1 -1
- package/dist/bin/gtfs-to-html.js +7 -7
- package/dist/bin/gtfs-to-html.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/views/default/css/timetable_styles.css +1 -0
- package/views/default/js/system-map.js +5 -0
- package/views/default/js/timetable-map.js +4 -4
- package/views/default/overview_full.pug +4 -4
- package/views/default/timetable_vertical.pug +4 -0
- package/views/default/timetablepage_full.pug +2 -2
package/dist/bin/gtfs-to-html.js
CHANGED
|
@@ -502,7 +502,7 @@ function formatTripNameForCSV(trip, timetable) {
|
|
|
502
502
|
// package.json
|
|
503
503
|
var package_default = {
|
|
504
504
|
name: "gtfs-to-html",
|
|
505
|
-
version: "2.10.
|
|
505
|
+
version: "2.10.17",
|
|
506
506
|
private: false,
|
|
507
507
|
description: "Build human readable transit timetables as HTML, PDF or CSV from GTFS",
|
|
508
508
|
keywords: [
|
|
@@ -555,16 +555,16 @@ var package_default = {
|
|
|
555
555
|
"cli-table": "^0.3.11",
|
|
556
556
|
"csv-stringify": "^6.6.0",
|
|
557
557
|
express: "^5.1.0",
|
|
558
|
-
gtfs: "^4.17.
|
|
558
|
+
gtfs: "^4.17.7",
|
|
559
559
|
"gtfs-realtime-pbf-js-module": "^1.0.0",
|
|
560
560
|
"js-beautify": "^1.15.4",
|
|
561
561
|
"lodash-es": "^4.17.21",
|
|
562
|
-
marked: "^16.1.
|
|
562
|
+
marked: "^16.1.2",
|
|
563
563
|
moment: "^2.30.1",
|
|
564
564
|
pbf: "^4.0.1",
|
|
565
565
|
"pretty-error": "^4.0.0",
|
|
566
566
|
pug: "^3.0.3",
|
|
567
|
-
puppeteer: "^24.
|
|
567
|
+
puppeteer: "^24.16.2",
|
|
568
568
|
"sanitize-filename": "^1.6.3",
|
|
569
569
|
"sanitize-html": "^2.17.0",
|
|
570
570
|
sqlstring: "^2.3.3",
|
|
@@ -587,10 +587,10 @@ var package_default = {
|
|
|
587
587
|
"@types/timer-machine": "^1.1.3",
|
|
588
588
|
"@types/yargs": "^17.0.33",
|
|
589
589
|
husky: "^9.1.7",
|
|
590
|
-
"lint-staged": "^16.1.
|
|
590
|
+
"lint-staged": "^16.1.5",
|
|
591
591
|
prettier: "^3.6.2",
|
|
592
592
|
tsup: "^8.5.0",
|
|
593
|
-
typescript: "^5.
|
|
593
|
+
typescript: "^5.9.2"
|
|
594
594
|
},
|
|
595
595
|
engines: {
|
|
596
596
|
node: ">= 20.11.0"
|
|
@@ -1579,7 +1579,7 @@ function setDefaultConfig(initialConfig) {
|
|
|
1579
1579
|
interpolatedStopText: "Estimated time of arrival",
|
|
1580
1580
|
gtfsToHtmlVersion: version,
|
|
1581
1581
|
linkStopUrls: false,
|
|
1582
|
-
mapStyleUrl: "https://tiles.openfreemap.org/styles/
|
|
1582
|
+
mapStyleUrl: "https://tiles.openfreemap.org/styles/positron",
|
|
1583
1583
|
menuType: "jump",
|
|
1584
1584
|
noDropoffSymbol: "\u2021",
|
|
1585
1585
|
noDropoffText: "No drop off available",
|