Skip to content

Commit 46abf3a

Browse files
committed
fix missing export
1 parent 99a3bb9 commit 46abf3a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sveltefire",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"scripts": {
55
"dev": "vite dev",
66
"build": "svelte-kit sync && svelte-package",

src/lib/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22
import User from './User.svelte';
33
import Collection from './Collection.svelte';
44
import Doc from './Doc.svelte';
5+
import FirebaseApp from './FirebaseApp.svelte';
56
import { docStore, userStore, collectionStore } from './stores';
67

78
export {
89
Doc,
910
User,
1011
Collection,
12+
FirebaseApp,
1113
docStore,
1214
collectionStore,
1315
userStore

0 commit comments

Comments
 (0)