fix exports

This commit is contained in:
2026-02-03 15:21:17 +01:00
parent 1217cf56f5
commit 5867448446
5 changed files with 2 additions and 2 deletions

View File

View File

@@ -9,8 +9,8 @@
],
"types": "dist/unom-style.d.ts",
"exports": {
".": "./dist/index.js",
"./easings/easings": "./dist/easings/easings.js",
"./unom-style": "./dist/unom-style.js",
"./package.json": "./package.json"
},
"scripts": {

View File

@@ -1,7 +1,7 @@
import { defineConfig } from "tsdown";
export default defineConfig({
entry: ["./src/unom-style.ts", "./src/easings/easings.ts"],
entry: ["./src/index.ts", "./src/easings/easings.ts"],
format: "esm",
dts: true,
exports: true,