gtfs-to-html 2.5.1 → 2.5.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/package.json +8 -8
- package/www/package.json +2 -2
- package/www/yarn.lock +959 -922
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.5.2] - 2023-05-04
|
|
9
|
+
|
|
10
|
+
### Updated
|
|
11
|
+
|
|
12
|
+
- Dependency updates
|
|
13
|
+
|
|
8
14
|
## [2.5.1] - 2023-03-06
|
|
9
15
|
|
|
10
16
|
### Updated
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtfs-to-html",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Build human readable transit timetables as HTML, PDF or CSV from GTFS",
|
|
6
6
|
"keywords": [
|
|
@@ -41,30 +41,30 @@
|
|
|
41
41
|
"archiver": "^5.3.1",
|
|
42
42
|
"cli-table": "^0.3.11",
|
|
43
43
|
"copy-dir": "^1.3.0",
|
|
44
|
-
"csv-stringify": "^6.3.
|
|
44
|
+
"csv-stringify": "^6.3.4",
|
|
45
45
|
"express": "^4.18.2",
|
|
46
|
-
"gtfs": "^4.
|
|
46
|
+
"gtfs": "^4.3.0",
|
|
47
47
|
"js-beautify": "^1.14.7",
|
|
48
48
|
"lodash-es": "^4.17.21",
|
|
49
49
|
"moment": "^2.29.4",
|
|
50
50
|
"morgan": "^1.10.0",
|
|
51
51
|
"pretty-error": "^4.0.0",
|
|
52
52
|
"pug": "^3.0.2",
|
|
53
|
-
"puppeteer": "^
|
|
53
|
+
"puppeteer": "^20.1.0",
|
|
54
54
|
"sanitize-filename": "^1.6.3",
|
|
55
55
|
"sqlstring": "^2.3.3",
|
|
56
56
|
"timer-machine": "^1.1.0",
|
|
57
57
|
"toposort": "^2.0.2",
|
|
58
58
|
"untildify": "^4.0.0",
|
|
59
|
-
"yargs": "^17.7.
|
|
59
|
+
"yargs": "^17.7.2",
|
|
60
60
|
"yoctocolors": "^1.0.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"eslint": "^8.
|
|
64
|
-
"eslint-config-prettier": "^8.
|
|
63
|
+
"eslint": "^8.39.0",
|
|
64
|
+
"eslint-config-prettier": "^8.8.0",
|
|
65
65
|
"eslint-config-xo": "^0.43.1",
|
|
66
66
|
"husky": "^8.0.3",
|
|
67
|
-
"prettier": "^2.8.
|
|
67
|
+
"prettier": "^2.8.8",
|
|
68
68
|
"pretty-quick": "^3.1.3"
|
|
69
69
|
},
|
|
70
70
|
"engines": {
|
package/www/package.json
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"deploy": "docusaurus deploy"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@docusaurus/core": "^2.
|
|
13
|
-
"@docusaurus/preset-classic": "^2.
|
|
12
|
+
"@docusaurus/core": "^2.4.0",
|
|
13
|
+
"@docusaurus/preset-classic": "^2.4.0",
|
|
14
14
|
"clsx": "^1.2.1",
|
|
15
15
|
"react": "^18.2.0",
|
|
16
16
|
"react-dom": "^18.2.0"
|