Skip to content

Commit

Permalink
fix: switch from /lib to /dist
Browse files Browse the repository at this point in the history
  • Loading branch information
atilafassina committed Oct 5, 2024
1 parent beb072b commit 4a3e000
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"email": "[email protected]"
},
"type": "module",
"main": "./lib/index.js",
"main": "./dist/index.js",
"files": [
"lib/",
"dist/",
"package.json",
"LICENSE.md",
"README.md"
Expand Down
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export default defineConfig({
dts: true,
entry: ["src/**/*.ts", "!src/**/*.test.*"],
format: "esm",
outDir: "lib",
outDir: "dist",
sourcemap: true,
});

0 comments on commit 4a3e000

Please sign in to comment.