gtfs-to-html 2.10.5 → 2.10.6
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 +2 -2
- package/dist/app/index.js.map +1 -1
- package/dist/bin/gtfs-to-html.js +2 -2
- package/dist/bin/gtfs-to-html.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +9 -9
package/dist/bin/gtfs-to-html.js
CHANGED
|
@@ -499,7 +499,7 @@ function formatTripNameForCSV(trip, timetable) {
|
|
|
499
499
|
}
|
|
500
500
|
|
|
501
501
|
// package.json
|
|
502
|
-
var version = "2.10.
|
|
502
|
+
var version = "2.10.6";
|
|
503
503
|
|
|
504
504
|
// src/lib/utils.ts
|
|
505
505
|
var isTimepoint = (stoptime) => {
|
|
@@ -1719,7 +1719,7 @@ function formatStopTime(stoptime, timetable, config) {
|
|
|
1719
1719
|
timetable.interpolatedStopSymbolUsed = true;
|
|
1720
1720
|
}
|
|
1721
1721
|
}
|
|
1722
|
-
if (stoptime.timepoint === null && stoptime.departure_time === null) {
|
|
1722
|
+
if (stoptime.timepoint === null && stoptime.departure_time === null && stoptime.stop_sequence === null) {
|
|
1723
1723
|
stoptime.skipped = true;
|
|
1724
1724
|
stoptime.classes.push("skipped");
|
|
1725
1725
|
if (timetable.noServiceSymbol !== null) {
|