-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version([email protected]): Fix North Stars Export and Schema
- Loading branch information
1 parent
ad44f34
commit 87db872
Showing
3 changed files
with
14 additions
and
3 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 |
---|---|---|
|
@@ -42,5 +42,5 @@ | |
"sideEffects": false, | ||
"type": "commonjs", | ||
"types": "dist/index.d.ts", | ||
"version": "0.0.9" | ||
"version": "0.0.10" | ||
} |
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,11 +1,22 @@ | ||
import { actions as _bits } from '../data/bits.json' | ||
import { actions as _bitsCrafts } from '../data/bits-crafts.json' | ||
import { actions as _gems } from '../data/gems.json' | ||
import { actions as _northStars } from '../data/north-stars.json' | ||
import { actions as _northStarsCrafts } from '../data/north-stars-crafts.json' | ||
import { Action } from './types' | ||
|
||
export const bits = _bits as Action[] | ||
export const bitsCrafts = _bitsCrafts as Action[] | ||
|
||
export const gems = _gems as Action[] | ||
|
||
export const allActions = [...bits, ...bitsCrafts, ...gems] | ||
export const northStars = _northStars as Action[] | ||
export const northStarsCrafts = _northStarsCrafts as Action[] | ||
|
||
export const allActions = [ | ||
...bits, | ||
...bitsCrafts, | ||
...gems, | ||
...northStars, | ||
...northStarsCrafts, | ||
] |
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