Skip to content

Commit ff94fb4

Browse files
committed
spelling help
1 parent 3fd8b07 commit ff94fb4

File tree

4 files changed

+28
-2
lines changed

4 files changed

+28
-2
lines changed

Diff for: .cspell/custom-dictionary.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Custom Dictionary Words
2+
Jacdac

Diff for: cspell.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"version": "0.2",
3+
"enabled": true,
4+
"ignorePaths": [],
5+
"dictionaryDefinitions": [
6+
{
7+
"name": "custom-dictionary",
8+
"path": "./.cspell/custom-dictionary.txt",
9+
"addWords": true
10+
}
11+
],
12+
"dictionaries": [
13+
"en-US",
14+
"softwareTerms",
15+
"typescript",
16+
"custom-dictionary"
17+
],
18+
"words": [],
19+
"ignoreWords": [],
20+
"import": []
21+
}

Diff for: website/docs/developer/custom-services.mdx

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
sidebar_position: 20
3-
hide_table_of_contents: true
43
---
54

65
# Custom Services

Diff for: website/docs/developer/simulation.mdx

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ hide_table_of_contents: true
55

66
# Simulation
77

8-
DeviceScript supports simulation through a Node.JS project running in parralel on the developer machine.
8+
DeviceScript supports simulation through a web dashboard and a Node.JS project running in parralel on the developer machine.
99
The Node.JS project uses the [Jacdac TypeScript client library](https://microsoft.github.io/jacdac-docs/clients/javascript/) and,
1010
any other Node package (like your favorite test project).
1111

1212
The Node.JS simulator project is, by default, located under `/sim/` with `/sim/app.ts` as the entry point.
1313

14+
## Dashboard
15+
16+
The simulators dashboard is the most convinient way to start simulating services and testing out your code.
17+
1418
## Project structure
1519

1620
In a DeviceScript project,

0 commit comments

Comments
 (0)