This repository was archived by the owner on Jul 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,17 @@ You will need [Deno](https://deno.land/) 1.7+.
16
16
2 . Clone the repository to your local device.
17
17
3 . Create a new branch ` git checkout -b BRANCH_NAME ` .
18
18
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.
19
22
20
23
``` 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
23
28
# 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
25
30
```
26
31
27
32
## Testing
@@ -37,14 +42,13 @@ deno test -A --location=http://localhost
37
42
- ** /cli** commands code
38
43
- ** /compiler** compiler in rust powered by swc
39
44
- ** /framework**
40
- - ** core** framework core
41
- - ** react** react framework code
45
+ - ** core** framework core code
46
+ - ** react** framework react code
42
47
- ** /design** design drawings and assets
43
48
- ** /examples** examples
44
49
- ** /plugins** official plugins
45
50
- ** /server** server code
46
51
- ** /shared** shared code
47
- - ** /test** testings
48
52
49
53
## Code of Conduct
50
54
You can’t perform that action at this time.
0 commit comments