File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -28,17 +28,16 @@ Template for Frontend development. Build a web page using [SolidJS](https://soli
28
28
- ` ... ` Doc.
29
29
- ` src ` All sourcecode.
30
30
- ` client ` Sourcecode for the client.
31
+ - ` app ` The main app.
32
+ - ` components ` Generic components for the page.
33
+ - ` static ` Static assets for the page.
31
34
- ` ... ` Client files.
32
35
- ` server ` Sourcecode for the server.
33
36
- ` ... ` Server files.
34
37
- ` test ` Tests (no unit tests).
35
38
- ` e_to_e ` End to End tests for the page.
36
39
37
40
## Usage
38
-
39
- > [ !WARNING]
40
- > There is currently an issue with the global variable ` document ` . [ Link to issue.] ( https://github.com/denoland/deno_lint/issues/590 )
41
-
42
41
### Getting started
43
42
Checkout the template and run initial [ ` deno task cache ` ] ( #tasks ) . This will cache all the necessary dependencies.
44
43
If you still getting import errors, try reloading the "import registries cache".
@@ -54,7 +53,7 @@ Use `deno task <name_of_the_task>`:
54
53
- ` build:watch ` Build the page with active file watcher. * (recommended)*
55
54
- ` build:dev ` Build the page for development (without optimization like minification).
56
55
- ` build:dev:watch ` Build the page for development (without optimization like minification) with active file watcher.
57
- - ` cache ` Cache all dependencies.
56
+ - ` cache-reload ` Cache all dependencies.
58
57
- ` serve ` Serve the build ` dist ` directory as the page root. * (recommended)*
59
58
- ` serve:dev ` Serve the build ` dist ` directory as the page root for development (with verbose logging and directory listing enabled).
60
59
- ` lint ` Lint the sourcecode
You can’t perform that action at this time.
0 commit comments