gtfs-to-html 2.9.13 → 2.9.14
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 -0
- package/dist/app/index.js +3 -2
- package/dist/app/index.js.map +1 -1
- package/dist/bin/gtfs-to-html.js +15 -10
- package/dist/bin/gtfs-to-html.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +15 -10
- package/dist/index.js.map +1 -1
- package/package.json +13 -6
package/README.md
CHANGED
|
@@ -61,6 +61,7 @@ Many transit agencies use `gtfs-to-html` to generate the schedule pages used on
|
|
|
61
61
|
|
|
62
62
|
- [Advance Transit](https://advancetransit.com)
|
|
63
63
|
- [Brockton Area Transit Authority](https://ridebat.com)
|
|
64
|
+
- [BusWay – CIRA (Aveiro, Portugal)](https://busway-cira.pt)
|
|
64
65
|
- [Capital Transit (Helena, Montana)](http://www.ridethecapitalt.org)
|
|
65
66
|
- [Capital Transit (Juneau, Alaska)](https://juneaucapitaltransit.org)
|
|
66
67
|
- [Central Transit (Ellensburg, Washington)](https://centraltransit.org)
|
package/dist/app/index.js
CHANGED
|
@@ -133,7 +133,7 @@ import toposort from "toposort";
|
|
|
133
133
|
// src/lib/file-utils.ts
|
|
134
134
|
import { dirname, join, resolve } from "node:path";
|
|
135
135
|
import { fileURLToPath } from "node:url";
|
|
136
|
-
import _ from "lodash-es";
|
|
136
|
+
import * as _ from "lodash-es";
|
|
137
137
|
import archiver from "archiver";
|
|
138
138
|
import beautify from "js-beautify";
|
|
139
139
|
import { renderFile } from "pug";
|
|
@@ -376,7 +376,7 @@ function getAgencyGeoJSON(config2) {
|
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
// package.json
|
|
379
|
-
var version = "2.9.
|
|
379
|
+
var version = "2.9.14";
|
|
380
380
|
|
|
381
381
|
// src/lib/utils.ts
|
|
382
382
|
var isTimepoint = (stoptime) => {
|
|
@@ -1328,6 +1328,7 @@ function setDefaultConfig(initialConfig) {
|
|
|
1328
1328
|
noServiceSymbol: "-",
|
|
1329
1329
|
noServiceText: "No service at this stop",
|
|
1330
1330
|
outputFormat: "html",
|
|
1331
|
+
overwriteExistingFiles: true,
|
|
1331
1332
|
requestDropoffSymbol: "\u2020",
|
|
1332
1333
|
requestDropoffText: "Must request drop off",
|
|
1333
1334
|
requestPickupSymbol: "***",
|