gtfs 4.4.0 → 4.4.1
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 +1 -1
- package/CHANGELOG.md +10 -0
- package/package.json +8 -4
package/.husky/pre-commit
CHANGED
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
|
+
## [4.4.1] - 2023-07-07
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Use lint-staged instead of pretty-quick
|
|
13
|
+
|
|
14
|
+
### Updated
|
|
15
|
+
|
|
16
|
+
- Dependency updates
|
|
17
|
+
|
|
8
18
|
## [4.4.0] - 2023-06-16
|
|
9
19
|
|
|
10
20
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gtfs",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.1",
|
|
4
4
|
"description": "Import GTFS transit data into SQLite and query routes, stops, times, fares and more",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"transit",
|
|
@@ -98,13 +98,13 @@
|
|
|
98
98
|
"devDependencies": {
|
|
99
99
|
"@types/better-sqlite3": "^7.6.4",
|
|
100
100
|
"dtslint": "^4.2.1",
|
|
101
|
-
"eslint": "^8.
|
|
101
|
+
"eslint": "^8.44.0",
|
|
102
102
|
"eslint-config-prettier": "^8.8.0",
|
|
103
103
|
"eslint-config-xo": "^0.43.1",
|
|
104
104
|
"husky": "^8.0.3",
|
|
105
|
+
"lint-staged": "^13.2.3",
|
|
105
106
|
"mocha": "^10.2.0",
|
|
106
|
-
"prettier": "^
|
|
107
|
-
"pretty-quick": "^3.1.3",
|
|
107
|
+
"prettier": "^3.0.0",
|
|
108
108
|
"should": "^13.2.3"
|
|
109
109
|
},
|
|
110
110
|
"engines": {
|
|
@@ -122,5 +122,9 @@
|
|
|
122
122
|
},
|
|
123
123
|
"prettier": {
|
|
124
124
|
"singleQuote": true
|
|
125
|
+
},
|
|
126
|
+
"lint-staged": {
|
|
127
|
+
"*.js": "prettier --write",
|
|
128
|
+
"*.json": "prettier --write"
|
|
125
129
|
}
|
|
126
130
|
}
|