Skip to content

Commit 54d5b35

Browse files
committed
Add workaround for #893
1 parent 8c5c21a commit 54d5b35

File tree

5 files changed

+35
-1
lines changed

5 files changed

+35
-1
lines changed

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"deno.enable": true
2+
"deno.enable": true,
3+
"files.exclude": {
4+
"www": true,
5+
}
36
}

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ solid _at scale_, and it does all of this while feeling like normal JavaScript.
2222
Effection runs on all major JavaScript platforms including NodeJs, Browser, and
2323
Deno. It is published on both [npm][npm-effection] and [deno.land][deno-land-effection].
2424

25+
## Contributing to Website
26+
27+
Go to [www/README.md] to learn how to contribute to the website.
28+
2529
## Development
2630

2731
[Deno][] is the primary tool used for development, testing, and packaging.

www/.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"deno.enable": true,
3+
}

www/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
## Effection Website
22

3+
The Effection website contains Guides and API documentation.
4+
5+
### Contributing
6+
7+
#### Using VSCode
8+
9+
The local development workflow with VSCode was adapted to workaround a [bug in Deno VSCode plugin][vscode-bug].
10+
To get all of the VSCode niceties, you have to open the `www/www.code-workspace` using _File -> Open Workspace From File_.
11+
312
### Development
413

514
```shellsession
615
$ deno task dev
716
```
17+
18+
[vscode-bug]: https://github.com/thefrontside/effection/issues/893

www/www.code-workspace

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"folders": [
3+
{
4+
"name": "website",
5+
"path": "."
6+
},
7+
{
8+
"name": "core",
9+
"path": "..",
10+
},
11+
],
12+
"settings": {}
13+
}

0 commit comments

Comments
 (0)