We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 897a218 commit 62f45e9Copy full SHA for 62f45e9
.changeset/fair-swans-swim.md
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# murmurhash3.ts
2
3
+## 0.1.10
4
+
5
+### Patch Changes
6
7
+- 897a218: fix postinstall script
8
9
## 0.1.9
10
11
### Patch Changes
package.json
@@ -1,6 +1,6 @@
{
"name": "murmurhash3-ts",
- "version": "0.1.9",
+ "version": "0.1.10",
"description": "MurmurHash3 in TypeScript",
"keywords": [
"hash",
@@ -40,7 +40,7 @@
40
"cs:add": "changeset add",
41
"cs:version": "changeset version",
42
"lint": "eslint src/**",
43
- "postinstall": "syncpack format",
+ "postinstall": "[ \"$NODE_ENV\" = \"production\" ] && exit 0; syncpack format",
44
"release": "pnpm lint && pnpm build && pnpm test && changeset publish",
45
"test": "jest --config jest.config.js"
46
},
0 commit comments