You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default values for the file patterns were incorrect.
Also changed the scan interval to 1000 so that if there is any errors, it will only spam once per second by default.
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,10 +63,10 @@ The config file by default will be named `config.toml` and the initial content w
63
63
|:-----|:------------|:-------:|
64
64
| Port | Set the port for the server to connect to. |`"8080"`|
65
65
| Directory | Specify the directory where this tool should watch for file changes to sync up with bitburner. |`"./"`|
66
-
| FileScanInterval | The amount of miliseconds the file scanner waits each loop. |`100`|
66
+
| FileScanInterval | The amount of miliseconds the file scanner waits each loop. |`1000`|
67
67
|[FilePatterns]| Holds include and exclude file pattern matching fields which allow you to define which files to sync and which not to. |[Pattern matching rules](https://github.com/bmatcuk/doublestar?tab=readme-ov-file#patterns)|
68
-
| - Include | Which files should be included. |`["**/*.js", "**/*.ts"]`|
69
-
| - Exclude | Which files to ignore. This is checked before the include patterns. |`["**/*.d.ts"]`|
68
+
| - Include | Which files should be included. |`["*.js", "*.ts"]`|
69
+
| - Exclude | Which files to ignore. This is checked before the include patterns. |`["*.d.ts"]`|
0 commit comments