gtfs 4.15.0 → 4.15.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/dist/bin/gtfs-export.js +1 -0
- package/dist/bin/gtfs-export.js.map +1 -1
- package/dist/bin/gtfs-import.js +63 -30
- package/dist/bin/gtfs-import.js.map +1 -1
- package/dist/bin/gtfsrealtime-update.js +1 -0
- package/dist/bin/gtfsrealtime-update.js.map +1 -1
- package/dist/index.d.ts +31 -11
- package/dist/index.js +61 -28
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
package/dist/bin/gtfs-export.js
CHANGED
|
@@ -132,6 +132,7 @@ import { parse } from "csv-parse";
|
|
|
132
132
|
import pluralize2 from "pluralize";
|
|
133
133
|
import stripBomStream from "strip-bom-stream";
|
|
134
134
|
import { temporaryDirectory } from "tempy";
|
|
135
|
+
import Timer from "timer-machine";
|
|
135
136
|
import untildify3 from "untildify";
|
|
136
137
|
import mapSeries2 from "promise-map-series";
|
|
137
138
|
|