Skip to content

Commit

Permalink
feat: Added galactic module to @observerly/astrometry.
Browse files Browse the repository at this point in the history
feat: Added galactic module to @observerly/astrometry.
  • Loading branch information
michealroberts committed Oct 31, 2023
1 parent abd8d00 commit c0333ba
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@
"require": "./dist/epoch.cjs",
"types": "./dist/epoch.d.ts"
},
"./galactic": {
"import": "./dist/galactic.js",
"require": "./dist/galactic.cjs",
"types": "./dist/galactic.d.ts"
},
"./humanize": {
"import": "./dist/humanize.js",
"require": "./dist/humanize.cjs",
Expand Down
11 changes: 11 additions & 0 deletions src/galactic.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*****************************************************************************************************************/

// @author Michael Roberts <michael@observerly.com>
// @package @observerly/astrometry/galactic
// @license Copyright © 2021-2023 observerly

/*****************************************************************************************************************/

export {}

/*****************************************************************************************************************/
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export * from './coordinates'
export * from './earth'
export * from './ecliptic'
export * from './epoch'
export * from './galactic'
export * from './humanize'
export * from './moon'
export * from './night'
Expand Down
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const modules = [
'earth',
'ecliptic',
'epoch',
'galactic',
'humanize',
'moon',
'night',
Expand Down

0 comments on commit c0333ba

Please sign in to comment.