gtfs-to-html 2.11.0 → 2.11.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/docker/Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
1
  # syntax=docker/dockerfile:1
2
- FROM node:20
2
+ FROM node:22
3
3
 
4
4
  RUN apt update
5
5
  RUN apt install -y chromium
@@ -8,6 +8,7 @@ RUN cd ~/
8
8
  COPY config.json ./
9
9
 
10
10
  ENV NPM_CONFIG_PREFIX=/home/node/.npm-global
11
+ ENV NODE_OPTIONS=--max-old-space-size=8192
11
12
  ENV PATH=$PATH:/home/node/.npm-global/bin
12
13
  RUN npm install -g gtfs-to-html
13
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtfs-to-html",
3
- "version": "2.11.0",
3
+ "version": "2.11.2",
4
4
  "private": false,
5
5
  "description": "Build human readable transit timetables as HTML, PDF or CSV from GTFS",
6
6
  "keywords": [
@@ -90,7 +90,7 @@
90
90
  "typescript": "^5.9.2"
91
91
  },
92
92
  "engines": {
93
- "node": ">= 20.11.0"
93
+ "node": ">= 22"
94
94
  },
95
95
  "release-it": {
96
96
  "github": {