Skip to content

Commit cd41487

Browse files
committed
👷 publish compiled JSR output
1 parent 35991db commit cd41487

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

jsr.json

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
{
2+
"$schema": "https://jsr.io/schema/config-file.v1.json",
23
"name": "@sftsrv/synk",
3-
"version": "0.0.2",
4+
"version": "0.0.3",
45
"exports": {
5-
".": "./src/types.ts",
6-
"./in-memory": "./src/in-memory/index.ts",
7-
"./async": "./src/async/index.ts",
8-
"./indexed-db": "./src/indexed-db/index.ts",
9-
"./websocket": "./src/websocket/index.ts"
6+
".": "./dist/index.ts",
7+
"./in-memory": "./dist/in-memory/index.ts",
8+
"./async": "./dist/async/index.ts",
9+
"./indexed-db": "./dist/indexed-db/index.ts",
10+
"./websocket": "./dist/websocket/index.ts"
11+
},
12+
"publish": {
13+
"exclude": ["!dist"]
1014
}
1115
}

package.json

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
{
22
"name": "@sftsv/synk",
3-
"version": "0.0.2",
4-
"description": "",
5-
"exports": {
6-
".": "./src/types.ts",
7-
"./in-memory": "./src/in-memory/index.ts",
8-
"./async": "./src/async/index.ts",
9-
"./indexed-db": "./src/indexed-db/index.ts",
10-
"./websocket": "./src/websocket/index.ts"
11-
},
3+
"version": "0.0.3",
4+
"description": "A library for developing offline-first web applications based on async data replication and synchronization between clients and the server",
125
"scripts": {
136
"build": "tsc",
147
"test": "vitest",

src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export type { Writable, ReplicatedStore, OwnedStore, Reference } from "./types"

0 commit comments

Comments
 (0)