[WEB-4223] fix: remove build process from utils package #7138

This commit is contained in:
sriram veeraghanta
2025-05-30 18:48:18 +05:30
committed by GitHub
parent 41c2aefad4
commit 322af8c436
3 changed files with 9 additions and 29 deletions

View File

@@ -4,14 +4,10 @@
"description": "Helper functions shared across multiple apps internally",
"license": "AGPL-3.0",
"private": true,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"build": "tsup ./src/index.ts --format esm,cjs --dts --external react --minify",
"lint": "eslint src --ext .ts,.tsx",
"lint:errors": "eslint src --ext .ts,.tsx --quiet"
},
@@ -29,7 +25,6 @@
"@types/node": "^22.5.4",
"@types/react": "^18.3.11",
"@types/zxcvbn": "^4.4.5",
"tsup": "8.4.0",
"typescript": "^5.3.3"
}
}

View File

@@ -1,19 +1,16 @@
export * from "./array";
export * from "./attachment";
export * from "./auth";
export * from "./datetime";
export * from "./color";
export * from "./common";
export * from "./datetime";
export * from "./emoji";
export * from "./file";
export * from "./get-icon-for-link";
export * from "./issue";
export * from "./state";
export * from "./string";
export * from "./theme";
export * from "./workspace";
export * from "./work-item";
export * from "./get-icon-for-link";
export * from "./subscription";
export * from "./theme";
export * from "./work-item";
export * from "./workspace";