플러그인간의 의존관계 표현
Open
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 1k
- Forks
- 114
- Avg merge
- 3m
- Merged PRs (30d)
- 2
Description
- Pre-effect 훅의 동작은 플러그인의 순서에 따라 영향을 받을 수 있습니다.
- 올바른 동작을 위해서 플러그인 간의 동작 순서에 대한 의존 관계를 표현할 수 있는 인터페이스와 구현이 필요합니다.
const myPlugin = () => ({
key: "...",
dependsOn: [
"@stackflow/plugin-history-sync",
],
})
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the plugin type or interface and the implementation of the pre-effect hook. Review how plugin order is currently handled, then determine where the proposed dependsOn declaration belongs. Done means plugins can express ordering dependencies and those dependencies affect pre-effect execution as intended.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- tooling
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100