Skip to content

Commit 0879844

Browse files
committed
chore: include missing sdk module
1 parent 787df01 commit 0879844

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.changeset/spicy-eyes-own.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"navigraph": patch
3+
---
4+
5+
Included missing `@navigraph/packages` module

packages/navigraph/tsup.config.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
import { defineConfig } from "tsup";
1+
import { defineConfig } from "tsup"
22

33
export default defineConfig({
44
format: ["cjs", "esm"],
55
target: "es5",
66
outExtension(ctx) {
7-
return { js: `.${ctx.format}.js` };
7+
return { js: `.${ctx.format}.js` }
88
},
99
outDir: "./",
1010
entry: {
1111
"app/dist/index": "./app/index.ts",
1212
"auth/dist/index": "./auth/index.ts",
1313
"charts/dist/index": "./charts/index.ts",
14+
"packages/dist/index": "./packages/index.ts",
1415
},
15-
});
16+
})

0 commit comments

Comments
 (0)