@web/dev-server
Advanced tools
Comparing version 0.0.12 to 0.0.13
# @web/dev-server | ||
## 0.0.13 | ||
### Patch Changes | ||
- db0cf85: Allow user to set open to false, which should result in the browser not opening. Do a falsy check, instead of null && undefined. | ||
## 0.0.12 | ||
@@ -4,0 +10,0 @@ |
@@ -45,3 +45,3 @@ "use strict"; | ||
await server.start(); | ||
if (config.open != null) { | ||
if (config.open != null && config.open !== false) { | ||
await openBrowser_1.openBrowser(config); | ||
@@ -48,0 +48,0 @@ } |
{ | ||
"name": "@web/dev-server", | ||
"version": "0.0.12", | ||
"version": "0.0.13", | ||
"publishConfig": { | ||
@@ -5,0 +5,0 @@ "access": "public" |
@@ -89,3 +89,3 @@ import { DevServer } from '@web/dev-server-core'; | ||
if (config.open != null) { | ||
if (config.open != null && config.open !== false) { | ||
await openBrowser(config); | ||
@@ -92,0 +92,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74703