Skip to content

Commit 9dfe9b8

Browse files
committed
Updates build process and adds keywords
Simplifies the `prepublishOnly` script by removing the `--frozen-lockfile` flag and directly running the build script. Adds "utility" to the keywords array to improve package discoverability.
1 parent b4ec888 commit 9dfe9b8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@
44
"description": "A module containing general purpose utility functions and types.",
55
"author": "Matt DeKok",
66
"license": "MIT",
7+
"keywords": [
8+
"utility"
9+
],
710
"scripts": {
811
"build": "tsup",
912
"dev": "tsup --watch",
1013
"link": "npm build && npm link",
1114
"clean": "rm -rf dist",
12-
"prepublishOnly": "npm install --frozen-lockfile && npm build",
15+
"prepublishOnly": "npm install && npm run build",
1316
"typecheck": "tsc --noEmit",
1417
"test": "jest"
1518
},

0 commit comments

Comments
 (0)