feat: use nx to manage monorepo (#2748)

This commit is contained in:
Himself65
2023-06-10 00:46:24 +08:00
committed by GitHub
parent 1e6e0336c3
commit eeb536d460
14 changed files with 519 additions and 182 deletions
+2 -2
View File
@@ -43,7 +43,7 @@ const config: PlaywrightTestConfig = {
webServer: [
{
command: 'yarn serve:test-static',
command: 'yarn run serve:test-static',
port: 8081,
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,
@@ -65,7 +65,7 @@ const config: PlaywrightTestConfig = {
},
// Intentionally not building the web, reminds you to run it by yourself.
{
command: 'yarn start -p 8080',
command: 'yarn run start:web -p 8080',
port: 8080,
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,