gtfs 3.2.5 → 3.3.0

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 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
+ ## [3.3.0] - 2022-04-26
9
+
10
+ ### Changed
11
+
12
+ - Switched back to sqlite3 module
13
+
14
+ ### Updated
15
+
16
+ - Dependency Updates
17
+
8
18
  ## [3.2.5] - 2022-04-09
9
19
 
10
20
  ### Updated
package/lib/db.js CHANGED
@@ -1,4 +1,4 @@
1
- import sqlite3 from '@vscode/sqlite3';
1
+ import sqlite3 from 'sqlite3';
2
2
  import { open } from 'sqlite';
3
3
  import { setDefaultConfig } from './utils.js';
4
4
  const dbs = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtfs",
3
- "version": "3.2.5",
3
+ "version": "3.3.0",
4
4
  "description": "Import GTFS transit data into SQLite and query routes, stops, times, fares and more",
5
5
  "keywords": [
6
6
  "transit",
@@ -71,7 +71,6 @@
71
71
  },
72
72
  "dependencies": {
73
73
  "@turf/helpers": "^6.5.0",
74
- "@vscode/sqlite3": "^5.0.8",
75
74
  "chalk": "^5.0.1",
76
75
  "csv-parse": "^5.0.4",
77
76
  "csv-stringify": "^6.0.5",
@@ -82,7 +81,8 @@
82
81
  "promise-map-series": "^0.3.0",
83
82
  "recursive-copy": "^2.0.14",
84
83
  "sanitize-filename": "^1.6.3",
85
- "sqlite": "^4.0.25",
84
+ "sqlite": "^4.1.1",
85
+ "sqlite3": "^5.0.5",
86
86
  "sqlstring-sqlite": "^0.1.1",
87
87
  "strip-bom-stream": "^5.0.0",
88
88
  "tmp-promise": "^3.0.3",
@@ -91,8 +91,8 @@
91
91
  "yargs": "^17.4.1"
92
92
  },
93
93
  "devDependencies": {
94
- "dtslint": "^4.2.1",
95
- "eslint": "^8.13.0",
94
+ "dtslint": "^3.4.2",
95
+ "eslint": "^8.14.0",
96
96
  "eslint-config-prettier": "^8.5.0",
97
97
  "eslint-config-xo": "^0.40.0",
98
98
  "husky": "^7.0.4",