-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
move overloads of execute to @libsql/core/api (because its part of the public API) && add CONTRIBUTING.md #261
Merged
+24
−32
Merged
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
6de91a2
move overloads of execute to @libsql/core/api (because its part of th…
DaBigBlob b40f7ea
move overloads of execute to @libsql/core/api (because its part of th…
DaBigBlob af2d811
move overloads of execute to @libsql/core/api (because its part of th…
DaBigBlob 48b25f6
add CONTRIBUTING.md
DaBigBlob 12e3086
fix: spelling mistake
DaBigBlob 3473a53
fix: linting: npx prettier --write .
DaBigBlob e0560a4
update CONTRIBUTING.md
DaBigBlob 92ea842
better instructions for contribution
DaBigBlob d8d16b4
better instructions for contribution
DaBigBlob 5e77593
prettier's antics
DaBigBlob 1bebef6
better instructions for contribution
DaBigBlob File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
better instructions for contribution
commit 92ea842b4b3bce8b971ce9957f8c53c6492a41af
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Prerequisites | ||
|
||
- have `npm` installed and in PATH | ||
- have `git` installed and in PATH | ||
- Have `npm` installed and in PATH | ||
- Have `git` installed and in PATH | ||
|
||
# Setting up the repo for contributing | ||
|
||
- clone this repo (`git clone <this repo's url> libsql-client-ts` on \*nix) | ||
- change the current working directory to the cloned repo (`cd libsql-client-ts` on \*nix) | ||
- `npm i` | ||
- change the current working directory to `libsql-core`'s workspace (`cd packages/libsql-core` on \*nix) | ||
- build it (`npm run build` on \*nix) | ||
- finally change back to base directory and start experimenting! (`cd ../..` on \*nix) | ||
- Clone this repository: `git clone https://github.com/tursodatabase/libsql-client-ts` | ||
- Change the current working directory to the cloned repository: `cd libsql-client-ts` | ||
- Install dependencies: `npm i` | ||
- Change the current working directory to `libsql-core`'s workspace: `cd packages/libsql-core` | ||
- Built the core package: `npm run build` | ||
- Go back to the root directory to start making changes: `cd ../..` |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think the
\*nix
is relevant.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i dont use windows (or haiku or whatever) so i have no knowledge of non *nix
"... for *nix" does not mean not for windows. it simply means that this works for *nix. and does not specify anything for windows, etc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, I don't think that the *nix is relevant. I don't use windows either but a quick search and from my experience just mentioning the
cd
is enough.Below is a rewrite of your instructions with some suggestions to improve clarity. Feel free to copy it completely or update what you think is relevant. I wanted to make sure that each step has a clear description and associated action.