forked from geoblocks/proj
-
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.
Add transpiled ES Module build with microbundle
- Export EPSG codes everywhere, so they can be accessed as .code instead of .default - Set up index.js that imports and exports EPSG_* - Add build target using microbundle See geoblocks/base#4
- Loading branch information
Roman Zoller
committed
Jan 25, 2019
1 parent
96db2d4
commit 7c6d54d
Showing
8 changed files
with
26 additions
and
6 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
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
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,15 @@ | ||
import * as EPSG_2056 from './EPSG_2056'; | ||
import * as EPSG_2154 from './EPSG_2154'; | ||
import * as EPSG_3947 from './EPSG_3947'; | ||
import * as EPSG_21781 from './EPSG_21781'; | ||
import * as EPSG_27572 from './EPSG_27572'; | ||
import * as EPSG_32631 from './EPSG_32631'; | ||
|
||
export { | ||
EPSG_2056, | ||
EPSG_2154, | ||
EPSG_3947, | ||
EPSG_21781, | ||
EPSG_27572, | ||
EPSG_32631, | ||
}; |