gtfs-to-html 2.12.4 → 2.12.5
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 +1 -1
- package/dist/app/index.js +10 -10
- package/dist/app/index.js.map +1 -1
- package/dist/bin/gtfs-to-html.js +10 -10
- package/dist/bin/gtfs-to-html.js.map +1 -1
- package/dist/frontend_libraries/maplibre-gl.css +1 -1
- package/dist/frontend_libraries/maplibre-gl.js +4 -4
- package/dist/index.js +10 -10
- package/dist/index.js.map +1 -1
- package/package.json +10 -10
- package/views/default/css/timetable_styles.css +6 -1
- package/views/default/js/timetable-alerts.js +3 -1
- package/views/default/js/timetable.js +24 -0
- package/views/default/timetablepage_full.pug +2 -0
package/README.md
CHANGED
|
@@ -95,7 +95,7 @@ Many transit agencies use `gtfs-to-html` to generate the schedule pages used on
|
|
|
95
95
|
| [Tahoe Transportation District](https://www.tahoetransportation.org) | Lake Tahoe, California |
|
|
96
96
|
| [Tahoe Truckee Area Regional Transit](https://tahoetruckeetransit.com) | Truckee, California |
|
|
97
97
|
| [Transcollines](https://transcollines.ca) | Les Collines-de-l'Outaouais, Quebec |
|
|
98
|
-
| [Tulare County Area Transit](https://
|
|
98
|
+
| [Tulare County Area Transit](https://gotcrta.org) | Tulare County, California |
|
|
99
99
|
| [Victor Valley Transit](https://vvta.org) | Victory Valley, California |
|
|
100
100
|
| [Worcester Regional Transit Authority](https://therta.com) | Worcester, Massachusetts |
|
|
101
101
|
|
package/dist/app/index.js
CHANGED
|
@@ -480,7 +480,7 @@ function getAgencyGeoJSON(config2) {
|
|
|
480
480
|
// package.json
|
|
481
481
|
var package_default = {
|
|
482
482
|
name: "gtfs-to-html",
|
|
483
|
-
version: "2.12.
|
|
483
|
+
version: "2.12.5",
|
|
484
484
|
private: false,
|
|
485
485
|
description: "Build human readable transit timetables as HTML, PDF or CSV from GTFS",
|
|
486
486
|
keywords: [
|
|
@@ -531,8 +531,8 @@ var package_default = {
|
|
|
531
531
|
},
|
|
532
532
|
dependencies: {
|
|
533
533
|
"@maplibre/maplibre-gl-geocoder": "^1.9.4",
|
|
534
|
-
"@turf/helpers": "^7.3.
|
|
535
|
-
"@turf/simplify": "^7.3.
|
|
534
|
+
"@turf/helpers": "^7.3.4",
|
|
535
|
+
"@turf/simplify": "^7.3.4",
|
|
536
536
|
anchorme: "^3.0.8",
|
|
537
537
|
archiver: "^7.0.1",
|
|
538
538
|
"cli-table": "^0.3.11",
|
|
@@ -543,15 +543,15 @@ var package_default = {
|
|
|
543
543
|
"gtfs-realtime-pbf-js-module": "^1.0.0",
|
|
544
544
|
"js-beautify": "^1.15.4",
|
|
545
545
|
"lodash-es": "^4.17.23",
|
|
546
|
-
"maplibre-gl": "^5.
|
|
547
|
-
marked: "^17.0.
|
|
546
|
+
"maplibre-gl": "^5.20.1",
|
|
547
|
+
marked: "^17.0.4",
|
|
548
548
|
moment: "^2.30.1",
|
|
549
549
|
pbf: "^4.0.1",
|
|
550
550
|
"pretty-error": "^4.0.0",
|
|
551
|
-
pug: "^3.0.
|
|
552
|
-
puppeteer: "^24.
|
|
551
|
+
pug: "^3.0.4",
|
|
552
|
+
puppeteer: "^24.39.1",
|
|
553
553
|
"sanitize-filename": "^1.6.3",
|
|
554
|
-
"sanitize-html": "^2.17.
|
|
554
|
+
"sanitize-html": "^2.17.1",
|
|
555
555
|
sqlstring: "^2.3.3",
|
|
556
556
|
toposort: "^2.0.2",
|
|
557
557
|
yargs: "^18.0.0",
|
|
@@ -567,12 +567,12 @@ var package_default = {
|
|
|
567
567
|
"@types/morgan": "^1.9.10",
|
|
568
568
|
"@types/node": "^25",
|
|
569
569
|
"@types/pug": "^2.0.10",
|
|
570
|
-
"@types/sanitize-html": "^2.16.
|
|
570
|
+
"@types/sanitize-html": "^2.16.1",
|
|
571
571
|
"@types/sqlstring": "^2.3.2",
|
|
572
572
|
"@types/toposort": "^2.0.7",
|
|
573
573
|
"@types/yargs": "^17.0.35",
|
|
574
574
|
husky: "^9.1.7",
|
|
575
|
-
"lint-staged": "^16.
|
|
575
|
+
"lint-staged": "^16.4.0",
|
|
576
576
|
prettier: "^3.8.1",
|
|
577
577
|
tsup: "^8.5.1",
|
|
578
578
|
typescript: "^5.9.3"
|