Skip to content

Commit 8844084

Browse files
committed
chore: move dev server to port 8080 to avoid conflict with integration tests
1 parent fc570ec commit 8844084

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106

107107
function serve() {
108108
return gulp.src('.', {read: false})
109-
.pipe(shell(['npx http-server -c-1']));
109+
.pipe(shell(['npx http-server -p 8080 -c-1']));
110110
}
111111

112112
gulp.task('clean', clean);

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default {
7474
commonjs(),
7575
isWatch && serve({
7676
contentBase: '',
77-
port: 8045,
77+
port: 8080,
7878
open: false,
7979
}),
8080
isWatch && livereload('dist'),

0 commit comments

Comments
 (0)