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

bug: customTypes wasn't being exported. Moved to root.
chore: updated all devDependencies to latest version
  • Loading branch information
benken committed Dec 4, 2024
1 parent ec17713 commit fbec395
Show file tree
Hide file tree
Showing 20 changed files with 1,110 additions and 817 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import iconManifest from "./outputs/icon-manifest.json";

Check failure on line 1 in index.ts

View workflow job for this annotation

GitHub Actions / Compile JS Modules

Importing a JSON file into an ECMAScript module requires a 'type: "json"' import attribute when 'module' is set to 'Node16'.
import { type IconManifest } from "./scripts/types/customTypes.js";
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 fbec395

Please sign in to comment.