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

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Phil Pluckthun and committed by
GitHub
7ef7da99 ad413efa

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