Skip to content

Commit 6b653f1

Browse files
committed
feat: first release
1 parent 6dd29f3 commit 6b653f1

File tree

376 files changed

+1597762
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

376 files changed

+1597762
-1
lines changed

.changeset/config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"changelog": "@changesets/changelog-github",
3+
"commit": false,
4+
"fixed": [],
5+
"linked": [],
6+
"access": "public",
7+
"baseBranch": "main",
8+
"updateInternalDependencies": "patch",
9+
"ignore": []
10+
}

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use flake

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
temp/
2+
.turbo
3+
node_modules
4+
dist
5+
*.log
6+
.DS_Store
7+
.direnv
8+
docs/out

.prettierrc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"semi": false,
3+
"trailingComma": "none",
4+
"singleQuote": false,
5+
"printWidth": 120,
6+
"tabWidth": 2,
7+
"useTabs": false
8+
}

CONTRIBUTING.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Contributing to Evolution SDK
2+
3+
We love your input! We want to make contributing to Evolution SDK as easy and transparent as possible, whether it's:
4+
5+
- Reporting a bug
6+
- Discussing the current state of the code
7+
- Submitting a fix
8+
- Proposing new features
9+
- Becoming a maintainer
10+
11+
## Development Process
12+
13+
We use GitHub to host code, to track issues and feature requests, as well as accept pull requests.
14+
15+
### Pull Requests
16+
17+
1. Fork the repo and create your branch from `main`.
18+
2. If you've added code that should be tested, add tests.
19+
3. If you've changed APIs, update the documentation.
20+
4. Ensure the test suite passes.
21+
5. Make sure your code follows the existing style.
22+
6. Issue that pull request!
23+
24+
## Development Setup
25+
26+
```bash
27+
# Clone your fork
28+
git clone https://github.com/your-username/evolution-sdk.git
29+
cd evolution-sdk
30+
31+
# Enter development environment (optional but recommended)
32+
nix develop
33+
34+
# Install dependencies
35+
pnpm install
36+
37+
# Build the project
38+
pnpm turbo build
39+
40+
# Run type checking
41+
pnpm turbo type-check
42+
43+
# Start development mode
44+
pnpm turbo dev
45+
```
46+
47+
## Code Style
48+
49+
- Use TypeScript for all new code
50+
- Follow the existing code style (we use prettier and eslint)
51+
- Write meaningful commit messages
52+
- Keep pull requests focused and small
53+
54+
## Reporting Bugs
55+
56+
We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/no-witness-labs/evolution-sdk/issues/new).
57+
58+
**Great Bug Reports** tend to have:
59+
60+
- A quick summary and/or background
61+
- Steps to reproduce
62+
- Be specific!
63+
- Give sample code if you can
64+
- What you expected would happen
65+
- What actually happens
66+
- Notes (possibly including why you think this might be happening, or stuff you tried that didn't work)
67+
68+
## Feature Requests
69+
70+
Feature requests are welcome! Please create an issue to discuss the feature before implementing it.
71+
72+
## License
73+
74+
By contributing, you agree that your contributions will be licensed under the MIT License.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 No Witness Labs
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)