Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit 94264ef

Browse files
committed
doc: update contributing doc
1 parent 3b15353 commit 94264ef

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

CONTRIBUTING.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,17 @@ You will need [Deno](https://deno.land/) 1.7+.
1616
2. Clone the repository to your local device.
1717
3. Create a new branch `git checkout -b BRANCH_NAME`.
1818
4. Change code then run our examples.
19+
5. Push your changes to Github.
20+
6. Make a [pull request](https://github.com/alephjs/aleph.js/pulls).
21+
8. Marge to master branch.
1922

2023
```bash
21-
# ssr
22-
deno run -A --unstable --import-map=import_map.json --location=http://localhost cli.ts dev ./examples/hello-world -L debug
24+
# ssr/development
25+
deno run -A --unstable --import-map=import_map.json cli.ts dev ./examples/hello-world -L debug
26+
# ssr/production
27+
deno run -A --unstable --import-map=import_map.json cli.ts build ./examples/hello-world -L debug
2328
# ssg
24-
deno run -A --unstable --import-map=import_map.json --location=http://localhost cli.ts build ./examples/hello-world -L debug
29+
deno run -A --unstable --import-map=import_map.json cli.ts build ./examples/hello-world -L debug
2530
```
2631

2732
## Testing
@@ -37,14 +42,13 @@ deno test -A --location=http://localhost
3742
- **/cli** commands code
3843
- **/compiler** compiler in rust powered by swc
3944
- **/framework**
40-
- **core** framework core
41-
- **react** react framework code
45+
- **core** framework core code
46+
- **react** framework react code
4247
- **/design** design drawings and assets
4348
- **/examples** examples
4449
- **/plugins** official plugins
4550
- **/server** server code
4651
- **/shared** shared code
47-
- **/test** testings
4852

4953
## Code of Conduct
5054

0 commit comments

Comments
 (0)