Skip to content

Commit

Permalink
bug: code-connect was creating icon names in kebab-case. Changed to s…
Browse files Browse the repository at this point in the history
…nake_case (#63)

bug: customTypes wasn't being exported. Moved to root.
chore: updated all devDependencies to latest version
  • Loading branch information
benken authored Dec 4, 2024
1 parent ec17713 commit 64b48fd
Show file tree
Hide file tree
Showing 27 changed files with 1,681 additions and 861 deletions.
4 changes: 4 additions & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://json.schemastore.org/mocharc.json",
"require": "tsx"
}
6 changes: 3 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import iconManifest from "./outputs/icon-manifest.json";
import { type IconManifest } from "./scripts/types/customTypes.js";
import iconManifest from "./outputs/icon-manifest.json" with { type: "json" };
import { type IconManifest } from "./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/web/icon-types.js";
export type * from "./scripts/types/customTypes.js";
export type * from "./types.js";

// x-release-please-start-version
export const version = "0.9.0";
Expand Down
Loading

0 comments on commit 64b48fd

Please sign in to comment.