-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.3.0 - Updated export structures (#5)
* Updated import path * Updated folder and export structures * Updated documents
- Loading branch information
1 parent
c612638
commit 2a43df6
Showing
31 changed files
with
315 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ name: Publish | |
on: | ||
push: | ||
branches: master | ||
workflow_dispatch: | ||
jobs: | ||
unit-tests: | ||
name: Unit Tests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Splited IO classes between `fs` dependent (for Node) and `fs` independent (for Browser). | ||
Updated export structures |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export * from './feed/iterable.js'; | ||
export * from './feed/loaded.js'; | ||
export type * from './feed/base.d.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
export { GTFSCalendarDateException } from './files/calendar-date.js'; | ||
export { GTFSCalendarAvailability } from './files/calendar.js'; | ||
export { GTFSContinuousPickupDropOff, GTFSWheelchairAccessbility } from './files/common.js'; | ||
export { GTFSFareAttributePaymentMethod, GTFSFareAttributeTransfer } from './files/fare-attribute.js'; | ||
export { GTFSFareMediaType } from './files/fare-media.js'; | ||
export { GTFSFareTransferRuleDurationLimit, GTFSFareTransferRuleType } from './files/fare-transfer-rule.js'; | ||
export { GTFSFrequncyExactTimes } from './files/frequency.js'; | ||
export { GTFSPathwayMode, GTFSPathwayDirection } from './files/pathway.js'; | ||
export { GTFSRouteType } from './files/route.js'; | ||
export { GTFSStopTimePickupDropOff, GTFSStopTimeTimepoint } from './files/stop-time.js'; | ||
export { GTFSStopLocationType } from './files/stop.js'; | ||
export { GTFSTranferType } from './files/transfer.js'; | ||
export { GTFSTripDirection, GTFSTripBikesAllowed } from './files/trip.js'; | ||
|
||
export type * from './files/agency.d.ts'; | ||
export type * from './files/area.d.ts'; | ||
export type * from './files/attribution.d.ts'; | ||
export type * from './files/calendar-date.d.ts'; | ||
export type * from './files/calendar.d.ts'; | ||
export type * from './files/common.d.ts'; | ||
export type * from './files/fare-attribute.d.ts'; | ||
export type * from './files/fare-leg-rule.d.ts'; | ||
export type * from './files/fare-media.d.ts'; | ||
export type * from './files/fare-product.d.ts'; | ||
export type * from './files/fare-rule.d.ts'; | ||
export type * from './files/fare-transfer-rule.d.ts'; | ||
export type * from './files/feed-info.d.ts'; | ||
export type * from './files/frequency.d.ts'; | ||
export type * from './files/level.d.ts'; | ||
export type * from './files/network.d.ts'; | ||
export type * from './files/pathway.d.ts'; | ||
export type * from './files/route-network.d.ts'; | ||
export type * from './files/route.d.ts'; | ||
export type * from './files/shape.d.ts'; | ||
export type * from './files/stop-area.d.ts'; | ||
export type * from './files/stop-time.d.ts'; | ||
export type * from './files/stop.d.ts'; | ||
export type * from './files/timeframe.d.ts'; | ||
export type * from './files/transfer.d.ts'; | ||
export type * from './files/translation.d.ts'; | ||
export type * from './files/trip.d.ts'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,66 @@ | ||
export { GTFSFileIO, GTFSAsyncFileIO } from './io/file/main.js'; | ||
export * from './io/feed/file.js'; | ||
export { GTFSFeedReaderFromFile, GTFSAsyncFeedReaderFromFile } from './io/feed/reader-fs.js'; | ||
export { GTFSFeedReaderFromMemory, GTFSAsyncFeedReaderFromMemory } from './io/feed/reader-memory.js'; | ||
export { GTFSFeedWriter, GTFSAsyncFeedWriter } from './io/feed/writer.js'; | ||
export { GTFSFeedWriterToFile, GTFSAsyncFeedWriterToFile } from './io/feed/writer-fs.js'; | ||
|
||
export * from './feed/iterable.js'; | ||
export * from './feed/loaded.js'; | ||
export * from './feed.js'; | ||
export * from './file-info.js'; | ||
export * from './files.js'; | ||
export * from './io.js'; | ||
|
||
export { GTFSCalendarDateException } from './files/calendar-date.js'; | ||
export { GTFSCalendarAvailability } from './files/calendar.js'; | ||
export { GTFSContinuousPickupDropOff, GTFSWheelchairAccessbility } from './files/common.js'; | ||
export { GTFSFareAttributePaymentMethod, GTFSFareAttributeTransfer } from './files/fare-attribute.js'; | ||
export { GTFSFareMediaType } from './files/fare-media.js'; | ||
export { GTFSFareTransferRuleDurationLimit, GTFSFareTransferRuleType } from './files/fare-transfer-rule.js'; | ||
export { GTFSFrequncyExactTimes } from './files/frequency.js'; | ||
export { GTFSPathwayMode, GTFSPathwayDirection } from './files/pathway.js'; | ||
export { GTFSRouteType } from './files/route.js'; | ||
export { GTFSStopTimePickupDropOff, GTFSStopTimeTimepoint } from './files/stop-time.js'; | ||
export { GTFSStopLocationType } from './files/stop.js'; | ||
export { GTFSTranferType } from './files/transfer.js'; | ||
export { GTFSTripDirection, GTFSTripBikesAllowed } from './files/trip.js'; | ||
|
||
export type * from './file-info'; | ||
export type * from './types'; | ||
|
||
export type * from './io/file/types'; | ||
|
||
export type * from './files/agency'; | ||
export type * from './files/area'; | ||
export type * from './files/attribution'; | ||
export type * from './files/calendar-date'; | ||
export type * from './files/calendar'; | ||
export type * from './files/common'; | ||
export type * from './files/fare-attribute'; | ||
export type * from './files/fare-leg-rule'; | ||
export type * from './files/fare-media'; | ||
export type * from './files/fare-product'; | ||
export type * from './files/fare-rule'; | ||
export type * from './files/fare-transfer-rule'; | ||
export type * from './files/feed-info'; | ||
export type * from './files/frequency'; | ||
export type * from './files/level'; | ||
export type * from './files/network'; | ||
export type * from './files/pathway'; | ||
export type * from './files/route-network'; | ||
export type * from './files/route'; | ||
export type * from './files/shape'; | ||
export type * from './files/stop-area'; | ||
export type * from './files/stop-time'; | ||
export type * from './files/stop'; | ||
export type * from './files/timeframe'; | ||
export type * from './files/transfer'; | ||
export type * from './files/translation'; | ||
export type * from './files/trip'; | ||
export type * from './feed.d.ts'; | ||
export type * from './file-info.d.ts'; | ||
export type * from './files.d.ts'; | ||
export type * from './io.d.ts'; | ||
export type * from './types.d.ts'; | ||
|
||
// export * from './feed/iterable.js'; | ||
// export * from './feed/loaded.js'; | ||
|
||
// export { GTFSCalendarDateException } from './files/calendar-date.js'; | ||
// export { GTFSCalendarAvailability } from './files/calendar.js'; | ||
// export { GTFSContinuousPickupDropOff, GTFSWheelchairAccessbility } from './files/common.js'; | ||
// export { GTFSFareAttributePaymentMethod, GTFSFareAttributeTransfer } from './files/fare-attribute.js'; | ||
// export { GTFSFareMediaType } from './files/fare-media.js'; | ||
// export { GTFSFareTransferRuleDurationLimit, GTFSFareTransferRuleType } from './files/fare-transfer-rule.js'; | ||
// export { GTFSFrequncyExactTimes } from './files/frequency.js'; | ||
// export { GTFSPathwayMode, GTFSPathwayDirection } from './files/pathway.js'; | ||
// export { GTFSRouteType } from './files/route.js'; | ||
// export { GTFSStopTimePickupDropOff, GTFSStopTimeTimepoint } from './files/stop-time.js'; | ||
// export { GTFSStopLocationType } from './files/stop.js'; | ||
// export { GTFSTranferType } from './files/transfer.js'; | ||
// export { GTFSTripDirection, GTFSTripBikesAllowed } from './files/trip.js'; | ||
|
||
// export { GTFSFileIO, GTFSAsyncFileIO } from './io/file/main.js'; | ||
|
||
// export { GTFSFeedReader as GTFSFeedReaderFromMemory, GTFSAsyncFeedReader as GTFSAsyncFeedReaderFromMemory } from './io/feed/reader-memory.js'; | ||
// export { GTFSFeedReader as GTFSFeedReaderFromFile, GTFSAsyncFeedReader as GTFSAsyncFeedReaderFromFile } from './io/feed/reader-fs.js'; | ||
// export { GTFSFeedWriter as GTFSFeedWriterToMemory, GTFSAsyncFeedWriter as GTFSAsyncFeedWriterToMemory } from './io/feed/writer-memory.js'; | ||
// export { GTFSFeedWriter as GTFSFeedWriterToFile, GTFSAsyncFeedWriter as GTFSAsyncFeedWriterToFile } from './io/feed/writer-fs.js'; | ||
|
||
// export type * from './feed/base.d.ts'; | ||
|
||
// export type * from './files/agency.d.ts'; | ||
// export type * from './files/area.d.ts'; | ||
// export type * from './files/attribution.d.ts'; | ||
// export type * from './files/calendar-date.d.ts'; | ||
// export type * from './files/calendar.d.ts'; | ||
// export type * from './files/common.d.ts'; | ||
// export type * from './files/fare-attribute.d.ts'; | ||
// export type * from './files/fare-leg-rule.d.ts'; | ||
// export type * from './files/fare-media.d.ts'; | ||
// export type * from './files/fare-product.d.ts'; | ||
// export type * from './files/fare-rule.d.ts'; | ||
// export type * from './files/fare-transfer-rule.d.ts'; | ||
// export type * from './files/feed-info.d.ts'; | ||
// export type * from './files/frequency.d.ts'; | ||
// export type * from './files/level.d.ts'; | ||
// export type * from './files/network.d.ts'; | ||
// export type * from './files/pathway.d.ts'; | ||
// export type * from './files/route-network.d.ts'; | ||
// export type * from './files/route.d.ts'; | ||
// export type * from './files/shape.d.ts'; | ||
// export type * from './files/stop-area.d.ts'; | ||
// export type * from './files/stop-time.d.ts'; | ||
// export type * from './files/stop.d.ts'; | ||
// export type * from './files/timeframe.d.ts'; | ||
// export type * from './files/transfer.d.ts'; | ||
// export type * from './files/translation.d.ts'; | ||
// export type * from './files/trip.d.ts'; | ||
|
||
// export type * from './io/file/types.d.ts'; |
Oops, something went wrong.