gtfs-to-html 2.11.0 → 2.11.1
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 +3 -2
- package/dist/app/index.js.map +1 -1
- package/dist/bin/gtfs-to-html.js +21 -6
- package/dist/bin/gtfs-to-html.js.map +1 -1
- package/dist/index.js +21 -6
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/app/index.js
CHANGED
|
@@ -132,6 +132,7 @@ import {
|
|
|
132
132
|
rm
|
|
133
133
|
} from "fs/promises";
|
|
134
134
|
import { homedir } from "os";
|
|
135
|
+
import { findPackageJSON } from "module";
|
|
135
136
|
import * as _ from "lodash-es";
|
|
136
137
|
import { uniqBy } from "lodash-es";
|
|
137
138
|
import archiver from "archiver";
|
|
@@ -421,7 +422,7 @@ function getAgencyGeoJSON(config2) {
|
|
|
421
422
|
// package.json
|
|
422
423
|
var package_default = {
|
|
423
424
|
name: "gtfs-to-html",
|
|
424
|
-
version: "2.11.
|
|
425
|
+
version: "2.11.1",
|
|
425
426
|
private: false,
|
|
426
427
|
description: "Build human readable transit timetables as HTML, PDF or CSV from GTFS",
|
|
427
428
|
keywords: [
|
|
@@ -511,7 +512,7 @@ var package_default = {
|
|
|
511
512
|
typescript: "^5.9.2"
|
|
512
513
|
},
|
|
513
514
|
engines: {
|
|
514
|
-
node: ">=
|
|
515
|
+
node: ">= 22"
|
|
515
516
|
},
|
|
516
517
|
"release-it": {
|
|
517
518
|
github: {
|