Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Will result in:
baseURL: 'http://localhost:3333',
},
webServer: {
command: 'stencil build --dev --watch --serve --no-open',
command: 'npx stencil build --dev --watch --serve --no-open',
url: 'http://localhost:3333/ping',
reuseExistingServer: !process.env.CI,
// Only timeout gets overridden, not the entire object
Expand Down
2 changes: 1 addition & 1 deletion src/create-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const createConfig = async (
baseURL,
},
webServer: {
command: 'stencil build --dev --watch --serve --no-open --testing',
command: 'npx stencil build --dev --watch --serve --no-open --testing',
url: webServerUrl,
reuseExistingServer: !!!process.env.CI,
// Max time to wait for dev server to start before aborting, defaults to 60000 (60 seconds)
Expand Down
4 changes: 2 additions & 2 deletions src/test/create-config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('createConfig', () => {
baseURL: 'http://localhost:3333',
},
webServer: {
command: 'stencil build --dev --watch --serve --no-open --testing',
command: 'npx stencil build --dev --watch --serve --no-open --testing',
cwd: undefined,
url: 'http://localhost:3333/ping',
reuseExistingServer: !process.env.CI,
Expand All @@ -47,7 +47,7 @@ describe('createConfig', () => {
baseURL: 'http://localhost:3333',
},
webServer: {
command: 'stencil build --dev --watch --serve --no-open --testing',
command: 'npx stencil build --dev --watch --serve --no-open --testing',
cwd: undefined,
url: 'http://localhost:3333/ping',
reuseExistingServer: !process.env.CI,
Expand Down
Loading