Public
Star 历史趋势
数据来源: GitHub API · 生成自 Stargazers.cn
README.md
webhookthing
Monorepo for webhookthing
Getting Started
pnpm install pnpm dev
For just cli
pnpm dev-cli
Publishing Instructions
First, add changes with changesets:
npx changeset add
Then, make a new version & publish
pnpm publish-cli
Making a new package
This is half a guide half our "lessons learned" from doing this too many times.
Example PR where we added the logger package
- Create a new folder in either
packages/orapps/a. Generally we recommend putting things inpackages/if they'll be used in >1 thing inapps/ - Create a package.json that imports the shared eslint and tsconfig
a. Probably easiest to copy-paste a minimal package at this point,
@captain/loggeris a good one - Add the new package's path to all the weird places it needs to be listed
a.
pnpm-workspace.yaml(note: Might be covered already with one of the/*instances) b..vscode/settings.json->eslint.workingDirectoriesc. If being used incli,apps/cli/cli/tsup.config.ts->noExternal - Do one last
pnpm installand you should be good to go!