We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787df01 commit 0879844Copy full SHA for 0879844
.changeset/spicy-eyes-own.md
@@ -0,0 +1,5 @@
1
+---
2
+"navigraph": patch
3
4
+
5
+Included missing `@navigraph/packages` module
packages/navigraph/tsup.config.ts
@@ -1,15 +1,16 @@
-import { defineConfig } from "tsup";
+import { defineConfig } from "tsup"
export default defineConfig({
format: ["cjs", "esm"],
target: "es5",
6
outExtension(ctx) {
7
- return { js: `.${ctx.format}.js` };
+ return { js: `.${ctx.format}.js` }
8
},
9
outDir: "./",
10
entry: {
11
"app/dist/index": "./app/index.ts",
12
"auth/dist/index": "./auth/index.ts",
13
"charts/dist/index": "./charts/index.ts",
14
+ "packages/dist/index": "./packages/index.ts",
15
-});
16
+})
0 commit comments