gtfs-to-html 2.7.1 → 2.7.2
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/CHANGELOG.md +6 -0
- package/README.md +2 -0
- package/docker/Dockerfile +3 -2
- package/docker/README.md +1 -1
- package/package.json +2 -2
- package/www/docs/current-usage.md +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.7.2] - 2024-08-16
|
|
9
|
+
|
|
10
|
+
### Updated
|
|
11
|
+
- Updated docker to node 20
|
|
12
|
+
- Dependency updates
|
|
13
|
+
|
|
8
14
|
## [2.7.1] - 2024-08-13
|
|
9
15
|
|
|
10
16
|
### Fixed
|
package/README.md
CHANGED
|
@@ -73,10 +73,12 @@ Many transit agencies use `gtfs-to-html` to generate the schedule pages used on
|
|
|
73
73
|
- [Marin Transit](https://marintransit.org)
|
|
74
74
|
- [Morongo Basin Transit Authority](https://mbtabus.com)
|
|
75
75
|
- [Mountain Transit](http://mountaintransit.org)
|
|
76
|
+
- [Mountain View Community Shuttle](http://mvcommunityshuttle.com)
|
|
76
77
|
- [MVgo (Mountain View, CA)](https://mvgo.org)
|
|
77
78
|
- [NW Connector (Oregon)](http://www.nworegontransit.org)
|
|
78
79
|
- [Palo Verde Valley Transit Agency](http://pvvta.com)
|
|
79
80
|
- [Petaluma Transit](http://transit.cityofpetaluma.net)
|
|
81
|
+
- [Rogue Valley Transportation District (Medford, OR)](https://rvtd.org)
|
|
80
82
|
- [RTC Washoe (Reno, NV)](https://www.rtcwashoe.com)
|
|
81
83
|
- [Santa Barbara Metropolitan Transit District](https://sbmtd.gov)
|
|
82
84
|
- [Sonoma County Transit](http://sctransit.com)
|
package/docker/Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# syntax=docker/dockerfile:1
|
|
2
|
-
FROM node:
|
|
2
|
+
FROM node:20
|
|
3
3
|
|
|
4
4
|
RUN apt update
|
|
5
5
|
RUN apt install -y chromium
|
|
@@ -7,7 +7,8 @@ RUN apt install -y chromium
|
|
|
7
7
|
RUN cd ~/
|
|
8
8
|
COPY config.json ./
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
ENV NPM_CONFIG_PREFIX=/home/node/.npm-global
|
|
11
|
+
ENV PATH=$PATH:/home/node/.npm-global/bin
|
|
11
12
|
RUN npm install -g gtfs-to-html
|
|
12
13
|
|
|
13
14
|
CMD [ "gtfs-to-html" ]
|
package/docker/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtfs-to-html",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Build human readable transit timetables as HTML, PDF or CSV from GTFS",
|
|
6
6
|
"keywords": [
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"morgan": "^1.10.0",
|
|
52
52
|
"pretty-error": "^4.0.0",
|
|
53
53
|
"pug": "^3.0.3",
|
|
54
|
-
"puppeteer": "^23.0
|
|
54
|
+
"puppeteer": "^23.1.0",
|
|
55
55
|
"sanitize-filename": "^1.6.3",
|
|
56
56
|
"sqlstring": "^2.3.3",
|
|
57
57
|
"timer-machine": "^1.1.0",
|
|
@@ -23,10 +23,12 @@ Many transit agencies use GTFS-to-HTML to generate the schedule pages used on th
|
|
|
23
23
|
| [Marin Transit](https://marintransit.org) | Marin County, California |
|
|
24
24
|
| [Morongo Basin Transit Authority](https://mbtabus.com) | Morongo Basin, California |
|
|
25
25
|
| [Mountain Transit](http://mountaintransit.org) | Big Bear Valley, California |
|
|
26
|
+
| [Mountain View Community Shuttle](https://mvcommunityshuttle.com) | Mountain View, California |
|
|
26
27
|
| [MVgo](https://mvgo.org) | Mountain View, California |
|
|
27
28
|
| [NW Connector](http://www.nworegontransit.org) | Northwest Oregon |
|
|
28
29
|
| [Palo Verde Valley Transit Agency](http://pvvta.com) | Palo Verde Valley, California |
|
|
29
30
|
| [Petaluma Transit](http://transit.cityofpetaluma.net) | Petaluma, California |
|
|
31
|
+
| [Rogue Valley Transportation District](https://rvtd.org) | Medford, Oregon |
|
|
30
32
|
| [RTC Washoe](https://www.rtcwashoe.com) | Reno, Nevada |
|
|
31
33
|
| [Santa Barbara Metropolitan Transit District](https://sbmtd.gov) | Santa Barbara, California |
|
|
32
34
|
| [Sonoma County Transit](http://sctransit.com) | Sonoma County, California |
|