Mirror: 🎩 A tiny but capable push & pull stream library for TypeScript and Flow

fix: Fix accidental inclusion of postinstall rather than prepare script (#138)

Changed files
+6 -1
.changeset
scripts
+5
.changeset/few-bears-jog.md
···
+
---
+
'wonka': patch
+
---
+
+
Fix accidental addition of `postinstall` script rather than `prepare` script.
+1 -1
package.json
···
"build": "rollup -c scripts/rollup.config.mjs",
"clean": "rimraf dist node_modules/.cache",
"prepublishOnly": "run-s clean build check test",
-
"postinstall": "node ./scripts/postinstall.js"
+
"prepare": "node ./scripts/prepare.js"
},
"repository": "https://github.com/0no-co/wonka",
"bugs": {
scripts/postinstall.js scripts/prepare.js