gtfs-to-chart 2.0.7 → 2.0.9
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/.husky/pre-commit +0 -3
- package/CHANGELOG.md +33 -0
- package/package.json +11 -11
package/.husky/pre-commit
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,52 +1,85 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
|
|
2
3
|
All notable changes to this project will be documented in this file.
|
|
3
4
|
|
|
4
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
7
|
|
|
8
|
+
## [2.0.9] - 2024-10-22
|
|
9
|
+
|
|
10
|
+
### Updated
|
|
11
|
+
|
|
12
|
+
- Dependency updates
|
|
13
|
+
|
|
14
|
+
## [2.0.8] - 2024-07-23
|
|
15
|
+
|
|
16
|
+
### Updated
|
|
17
|
+
|
|
18
|
+
- Dependency updates
|
|
19
|
+
|
|
7
20
|
## [2.0.7] - 2023-07-18
|
|
21
|
+
|
|
8
22
|
### Changed
|
|
23
|
+
|
|
9
24
|
- Use lint-staged instead of pretty-quick
|
|
10
25
|
|
|
11
26
|
### Updated
|
|
27
|
+
|
|
12
28
|
- Dependency updates
|
|
13
29
|
|
|
14
30
|
## [2.0.6] - 2023-05-04
|
|
31
|
+
|
|
15
32
|
### Updated
|
|
33
|
+
|
|
16
34
|
- Dependency updates
|
|
17
35
|
|
|
18
36
|
## [2.0.5] - 2022-12-31
|
|
37
|
+
|
|
19
38
|
### Updated
|
|
39
|
+
|
|
20
40
|
- Update to node-gtfs v4
|
|
21
41
|
- Dependency updates
|
|
22
42
|
- Add Husky
|
|
23
43
|
|
|
24
44
|
## [2.0.4] - 2022-11-09
|
|
45
|
+
|
|
25
46
|
### Updated
|
|
47
|
+
|
|
26
48
|
- Dependency updates
|
|
27
49
|
|
|
28
50
|
### Fixed
|
|
51
|
+
|
|
29
52
|
- Fixed charts path in generated charts HTML
|
|
30
53
|
|
|
31
54
|
## [2.0.3] - 2022-06-25
|
|
55
|
+
|
|
32
56
|
### Updated
|
|
57
|
+
|
|
33
58
|
- Dependency updates
|
|
34
59
|
|
|
35
60
|
### Fixed
|
|
61
|
+
|
|
36
62
|
- Fixed charts path in generated index.html
|
|
37
63
|
|
|
38
64
|
## [2.0.2] - 2022-06-25
|
|
65
|
+
|
|
39
66
|
### Updated
|
|
67
|
+
|
|
40
68
|
- Dependency updates
|
|
41
69
|
- Readme udpates
|
|
42
70
|
|
|
43
71
|
## [2.0.1] - 2021-08-17
|
|
72
|
+
|
|
44
73
|
### Updated
|
|
74
|
+
|
|
45
75
|
- Dependency updates
|
|
46
76
|
|
|
47
77
|
### Fixed
|
|
78
|
+
|
|
48
79
|
- Fixes for no shape_dist_traveled
|
|
49
80
|
|
|
50
81
|
## [2.0.0] - 2021-05-14
|
|
82
|
+
|
|
51
83
|
### Breaking Changes
|
|
84
|
+
|
|
52
85
|
- Converted to ES6 Module
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtfs-to-chart",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Generate stringline charts of a transit routes from GTFS",
|
|
6
6
|
"keywords": [
|
|
@@ -24,20 +24,20 @@
|
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"start": "node ./app",
|
|
27
|
-
"prepare": "husky
|
|
27
|
+
"prepare": "husky"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"better-copy": "^1.0.4",
|
|
31
31
|
"chalk": "^5.3.0",
|
|
32
32
|
"connect-slashes": "^1.4.0",
|
|
33
|
-
"express": "^4.
|
|
34
|
-
"gtfs": "^4.
|
|
35
|
-
"js-beautify": "^1.
|
|
33
|
+
"express": "^4.21.1",
|
|
34
|
+
"gtfs": "^4.15.3",
|
|
35
|
+
"js-beautify": "^1.15.1",
|
|
36
36
|
"lodash-es": "^4.17.21",
|
|
37
|
-
"moment": "^2.
|
|
37
|
+
"moment": "^2.30.1",
|
|
38
38
|
"morgan": "^1.10.0",
|
|
39
39
|
"progress": "^2.0.3",
|
|
40
|
-
"pug": "^3.0.
|
|
40
|
+
"pug": "^3.0.3",
|
|
41
41
|
"sanitize-filename": "^1.6.3",
|
|
42
42
|
"simplify-geojson": "^1.0.5",
|
|
43
43
|
"sqlstring": "^2.3.3",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"yargs": "^17.7.2"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"husky": "^
|
|
50
|
-
"lint-staged": "^
|
|
51
|
-
"prettier": "^3.
|
|
49
|
+
"husky": "^9.1.6",
|
|
50
|
+
"lint-staged": "^15.2.10",
|
|
51
|
+
"prettier": "^3.3.3"
|
|
52
52
|
},
|
|
53
53
|
"engines": {
|
|
54
|
-
"node": ">=
|
|
54
|
+
"node": ">= 20.11.0"
|
|
55
55
|
},
|
|
56
56
|
"release-it": {
|
|
57
57
|
"github": {
|