-
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.
fix: Fix bugs from previous release (#22)
fix: On release trigger fix: flutter publish dir fix: index.ts points to correct file
- Loading branch information
1 parent
f176eed
commit 7d7a085
Showing
3 changed files
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import iconManifest from "./outputs/icon-manifest.json"; | ||
import { type IconManifest } from "./scripts/types/customTypes.js"; | ||
export { ZetaIconNameList } from "./outputs/definitions/icon-types.js"; | ||
export { ZetaIconNameList } from "./outputs/web/icon-types.js"; | ||
|
||
const convertedIconManifest = new Map(Object.entries(iconManifest)) as IconManifest; | ||
|
||
export { convertedIconManifest as iconManifest }; | ||
|
||
export type { ZetaIconName } from "./outputs/definitions/icon-types.js"; | ||
export type { ZetaIconName } from "./outputs/web/icon-types.js"; | ||
export type * from "./scripts/types/customTypes.js"; |