gtfs-to-html 2.4.1 → 2.4.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 +10 -0
- package/package.json +5 -5
- package/views/default/layout.pug +2 -2
- package/www/package.json +2 -2
- package/www/yarn.lock +727 -734
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ 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.4.2] - 2022-07-26
|
|
9
|
+
|
|
10
|
+
### Updated
|
|
11
|
+
|
|
12
|
+
- Dependency updates
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Moved tailwindcss include to header
|
|
17
|
+
|
|
8
18
|
## [2.4.1] - 2022-07-10
|
|
9
19
|
|
|
10
20
|
### Updated
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtfs-to-html",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Build human readable transit timetables as HTML, PDF or CSV from GTFS",
|
|
6
6
|
"keywords": [
|
|
@@ -40,16 +40,16 @@
|
|
|
40
40
|
"archiver": "^5.3.1",
|
|
41
41
|
"cli-table": "^0.3.11",
|
|
42
42
|
"copy-dir": "^1.3.0",
|
|
43
|
-
"csv-stringify": "^6.
|
|
43
|
+
"csv-stringify": "^6.2.0",
|
|
44
44
|
"express": "^4.18.1",
|
|
45
|
-
"gtfs": "^3.5.
|
|
45
|
+
"gtfs": "^3.5.1",
|
|
46
46
|
"js-beautify": "^1.14.4",
|
|
47
47
|
"lodash-es": "^4.17.21",
|
|
48
48
|
"moment": "^2.29.4",
|
|
49
49
|
"morgan": "^1.10.0",
|
|
50
50
|
"pretty-error": "^4.0.0",
|
|
51
51
|
"pug": "^3.0.2",
|
|
52
|
-
"puppeteer": "^
|
|
52
|
+
"puppeteer": "^15.5.0",
|
|
53
53
|
"sanitize-filename": "^1.6.3",
|
|
54
54
|
"sqlstring": "^2.3.3",
|
|
55
55
|
"timer-machine": "^1.1.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"yoctocolors": "^1.0.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"eslint": "^8.
|
|
62
|
+
"eslint": "^8.20.0",
|
|
63
63
|
"eslint-config-prettier": "^8.5.0",
|
|
64
64
|
"eslint-config-xo": "^0.41.0",
|
|
65
65
|
"husky": "^8.0.1",
|
package/views/default/layout.pug
CHANGED
|
@@ -8,9 +8,9 @@ html
|
|
|
8
8
|
link(rel="stylesheet" href=`${config.assetPath}css/timetable_pdf_styles.css`)
|
|
9
9
|
meta(name="viewport" content="initial-scale=1.0, width=device-width")
|
|
10
10
|
|
|
11
|
+
script(src="https://cdn.tailwindcss.com")
|
|
12
|
+
|
|
11
13
|
block extraHeader
|
|
12
14
|
|
|
13
15
|
body
|
|
14
16
|
block content
|
|
15
|
-
|
|
16
|
-
script(src="https://cdn.tailwindcss.com")
|
package/www/package.json
CHANGED
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"deploy": "docusaurus deploy"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@docusaurus/core": "^2.0.0-
|
|
13
|
-
"@docusaurus/preset-classic": "^2.0.0-
|
|
12
|
+
"@docusaurus/core": "^2.0.0-rc.1",
|
|
13
|
+
"@docusaurus/preset-classic": "^2.0.0-rc.1",
|
|
14
14
|
"clsx": "^1.2.1",
|
|
15
15
|
"react": "^18.2.0",
|
|
16
16
|
"react-dom": "^18.2.0"
|