Contributing
Thanks for being interested in contributing to this project!
Development
Setup
Clone the repo that you want to contribute into, to your local machine and install the dependencies.
Run the tests to make sure everything is working.
We use commitizen. Installed on your machine.
Contributing
Existing functions
Feel free to enhance the existing functions. Please try not to introduce breaking changes unless absolutely necessary.
New functions
There are some notes for adding new functions
- Before you start working, it's better to discuss the function you want to add in discord.
- Details explained in the Function Folder section.
- Try not to introduce 3rd-party dependencies in @sveu/actions, @sveu/browser or @sveu/shared as these package's is aimed to be as lightweight as possible.
- If you'd like to introduce 3rd-party dependencies, please contribute to @sveu/extend.
- For
@sveu/extend
case, install the 3rd-party library you want to use,pnpm add -D <library>
. -
Add the package that you just installed to
peerDependencies
andpeerDependenciesMeta
inpackage.json
.
Please note you don't need to update packages'
src/index.ts
. It's automatically generated.
Project Structure
Function Folder
A function folder typically contains these 2 files:
for index.ts
you should export the function with names.
// DO
export { my_fnction }
// Do
export function my_function() {}
// DON'T
export default my_function
// DON'T
export default function my_function() {}
Code Style
We prefer snake case syntax, and indent with 4 spaces.
Thanks
Thank you again for being interested in this project! You are awesome!