-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #894 from thefrontside/tm/add-vscode-workspace-wor…
…karound Make it easier to contribute to www with VSCode
- Loading branch information
Showing
5 changed files
with
35 additions
and
1 deletion.
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,3 +1,6 @@ | ||
{ | ||
"deno.enable": true | ||
"deno.enable": true, | ||
"files.exclude": { | ||
"www": true | ||
} | ||
} |
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"deno.enable": true, | ||
} |
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,7 +1,18 @@ | ||
## Effection Website | ||
|
||
The Effection website contains Guides and API documentation. | ||
|
||
### Contributing | ||
|
||
#### Using VSCode | ||
|
||
The local development workflow with VSCode was adapted to workaround a [bug in Deno VSCode plugin][vscode-bug]. | ||
To get all of the VSCode niceties, you have to open the `www/www.code-workspace` using _File -> Open Workspace From File_. | ||
|
||
### Development | ||
|
||
```shellsession | ||
$ deno task dev | ||
``` | ||
|
||
[vscode-bug]: https://github.com/thefrontside/effection/issues/893 |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"name": "website", | ||
"path": "." | ||
}, | ||
{ | ||
"name": "core", | ||
"path": "..", | ||
}, | ||
], | ||
"settings": {} | ||
} |