Skip to content

Commit 73fafce

Browse files
committed
FIX: should be fixed now
1 parent 250dcea commit 73fafce

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.changeset/fast-ways-double.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tfjs-image-node": minor
3+
---
4+
5+
FIX!!!

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"module": "./dist/index.mjs",
77
"types": "./dist/index.d.ts",
88
"files": [
9-
"./dist"
9+
"dist"
1010
],
1111
"scripts": {
1212
"dev": "vitest",
@@ -15,7 +15,7 @@
1515
"lint": "tsc",
1616
"ci": "pnpm run lint && pnpm run test && pnpm run build",
1717
"prerelease": "pnpm run lint && pnpm format && pnpm run test && pnpm run build",
18-
"release": "changeset publish",
18+
"release": "pnpm build && changeset publish",
1919
"format": "prettier --write ."
2020
},
2121
"homepage": "https://github.com/kevinanielsen/tfjs-image-node/",

tsup.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineConfig } from "tsup";
22

33
export default defineConfig({
4-
entry: ["src/**"],
4+
entry: ["src/index.ts"],
55
format: ["cjs", "esm"], // Build for commonJS and ESmodules
66
dts: true, // Generate declaration file (.d.ts)
77
splitting: false,

0 commit comments

Comments
 (0)