Skip to content

Commit 1608d14

Browse files
committed
fix(pixel-utils): use tsup for bundling again
1 parent d611ed2 commit 1608d14

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

packages/pixel-utils/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
"name": "@fuf-stack/pixel-utils",
33
"description": "fuf pixels helper utils",
44
"author": "Fröhlich ∧ Frei",
5-
"version": "1.1.0",
5+
"version": "1.0.6",
66
"type": "module",
77
"main": "./dist/index.cjs",
88
"module": "./dist/index.js",
9-
"types": "./dist/index.d.cts",
9+
"types": "./dist/index.d.ts",
1010
"sideEffects": false,
1111
"exports": {
1212
".": {
13-
"require": "./dist/index.cjs",
14-
"import": "./dist/index.js"
15-
},
16-
"./package.json": "./package.json"
13+
"types": "./dist/index.d.ts",
14+
"import": "./dist/index.js",
15+
"require": "./dist/index.cjs"
16+
}
1717
},
1818
"files": [
1919
"./dist"
@@ -37,7 +37,7 @@
3737
"url": "https://github.com/fuf-stack/pixels/issues"
3838
},
3939
"scripts": {
40-
"build": "tsdown",
40+
"build": "tsup --config node_modules/@repo/tsup-config/config.ts",
4141
"prepack": "pnpm build"
4242
},
4343
"peerDependencies": {

packages/pixel-utils/tsdown.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1+
// TODO: this is not used for now, but we should use it in the future
2+
13
/* eslint-disable no-restricted-exports */
24
/* eslint-disable import-x/no-extraneous-dependencies */
35
export { default } from '@repo/tsdown-config/config';
4-

0 commit comments

Comments
 (0)