Skip to content

Commit

Permalink
👷 publish compiled JSR output
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelvalley committed Mar 26, 2024
1 parent 35991db commit cd41487
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
16 changes: 10 additions & 6 deletions jsr.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
"$schema": "https://jsr.io/schema/config-file.v1.json",
"name": "@sftsrv/synk",
"version": "0.0.2",
"version": "0.0.3",
"exports": {
".": "./src/types.ts",
"./in-memory": "./src/in-memory/index.ts",
"./async": "./src/async/index.ts",
"./indexed-db": "./src/indexed-db/index.ts",
"./websocket": "./src/websocket/index.ts"
".": "./dist/index.ts",
"./in-memory": "./dist/in-memory/index.ts",
"./async": "./dist/async/index.ts",
"./indexed-db": "./dist/indexed-db/index.ts",
"./websocket": "./dist/websocket/index.ts"
},
"publish": {
"exclude": ["!dist"]
}
}
11 changes: 2 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,7 @@
{
"name": "@sftsv/synk",
"version": "0.0.2",
"description": "",
"exports": {
".": "./src/types.ts",
"./in-memory": "./src/in-memory/index.ts",
"./async": "./src/async/index.ts",
"./indexed-db": "./src/indexed-db/index.ts",
"./websocket": "./src/websocket/index.ts"
},
"version": "0.0.3",
"description": "A library for developing offline-first web applications based on async data replication and synchronization between clients and the server",
"scripts": {
"build": "tsc",
"test": "vitest",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export type { Writable, ReplicatedStore, OwnedStore, Reference } from "./types"

0 comments on commit cd41487

Please sign in to comment.