Skip to content

Commit

Permalink
Fix exports
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaitanLyss committed Sep 4, 2024
1 parent 6efe22e commit ac9b042
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@selenite/commons",
"version": "0.24.0",
"version": "0.24.1",
"repository": "github:ShaitanLyss/selenite-commons",
"license": "MIT",
"keywords": [
Expand Down
1 change: 1 addition & 0 deletions src/lib/components/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {default as MatchHighlighter} from './MatchHighlighter.svelte';
2 changes: 2 additions & 0 deletions src/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ export * as Action from './actions';
export * from './actions';
export * as Utils from './utils';
export * from './utils';
export * as Components from './components';
export * from './components';
export * as Types from './type';
export * from './type';
export * as DataStructure from './datastructure';
Expand Down
3 changes: 1 addition & 2 deletions src/routes/match-highlight/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script lang="ts">
import { isAlphaNumChar, shortcut } from '$lib';
import MatchHighlighter from '$lib/components/MatchHighlighter.svelte';
import { isAlphaNumChar, shortcut, MatchHighlighter } from '$lib';
let ref = $state('dust');
let content = $state(
"I'm blown away\n\
Expand Down

0 comments on commit ac9b042

Please sign in to comment.