@herowcode/utils 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@herowcode/utils",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "A lightweight collection of utility functions for everyday JavaScript/TypeScript development",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -143,14 +143,12 @@
|
|
|
143
143
|
"dist"
|
|
144
144
|
],
|
|
145
145
|
"scripts": {
|
|
146
|
-
"prebuild": "node scripts/sync-exports.cjs",
|
|
147
146
|
"build": "tsup --config tsup.config.ts",
|
|
148
147
|
"lint": "biome check --write --unsafe && tsc --noEmit",
|
|
149
148
|
"test": "vitest",
|
|
150
149
|
"test:ui": "vitest --ui",
|
|
151
150
|
"test:run": "vitest run",
|
|
152
151
|
"test:coverage": "vitest run --coverage",
|
|
153
|
-
"prepare": "pnpm build",
|
|
154
152
|
"prepublishOnly": "pnpm lint && pnpm test:run && pnpm build",
|
|
155
153
|
"version:patch": "pnpm lint && pnpm test:run && pnpm build && npm version patch && git push && git push --tags",
|
|
156
154
|
"version:minor": "pnpm lint && pnpm test:run && pnpm build && npm version minor && git push && git push --tags",
|