Skip to content

Commit

Permalink
FIX: should be fixed now
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinanielsen committed Dec 3, 2023
1 parent 250dcea commit 73fafce
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/fast-ways-double.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"tfjs-image-node": minor
---

FIX!!!
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"./dist"
"dist"
],
"scripts": {
"dev": "vitest",
Expand All @@ -15,7 +15,7 @@
"lint": "tsc",
"ci": "pnpm run lint && pnpm run test && pnpm run build",
"prerelease": "pnpm run lint && pnpm format && pnpm run test && pnpm run build",
"release": "changeset publish",
"release": "pnpm build && changeset publish",
"format": "prettier --write ."
},
"homepage": "https://github.com/kevinanielsen/tfjs-image-node/",
Expand Down
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from "tsup";

export default defineConfig({
entry: ["src/**"],
entry: ["src/index.ts"],
format: ["cjs", "esm"], // Build for commonJS and ESmodules
dts: true, // Generate declaration file (.d.ts)
splitting: false,
Expand Down

0 comments on commit 73fafce

Please sign in to comment.