Contributing
@exile-watch/splinters setup & contribution guide

Development
4. Install dependencies
# project root
$: nvm use # uses node version that's defined in .nvmrc
$: npm i # install dependencies
a) Create splinter package link
# @exile-watch/splinters project
# package path e.g. ~/splinters/packages/biome-config
$: npm link
b) Build splinters package
# @exile-watch/splinters project
# package path e.g. ~/splinters/packages/biome-config
$: npm run build
# e.g. @exile-watch/crucible project
# root path ~/crucible
$: npm link @exile-watch/biome-config
6. Conclusion
Not happy with the changes? Repeat step b) Build splinters package and c) Link splinter package in crucible
Happy with the change? Create a new pull request and don't forget to unlink:
# @exile-watch/splinters project
# package path e.g. ~/splinters/packages/biome-config
$: npm unlink
# e.g. @exile-watch/crucible project
# root path ~/crucible
$: npm i # this will "revert" linked module to the actual package
Last updated
Was this helpful?