(path)
| 92 | tsc does not copy static files, so copy them over manually for dev server. |
| 93 | */ |
| 94 | function copy(path) { |
| 95 | FileSystem.cpSync( |
| 96 | Path.join(__dirname, "..", "src", "main", path), |
| 97 | Path.join(__dirname, "..", "build", "src", "main", path), |
| 98 | { recursive: true } |
| 99 | ) |
| 100 | } |
| 101 | |
| 102 | function stop() { |
| 103 | viteServer.close() |
no test coverage detected