Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@web/dev-server

Package Overview
Dependencies
Maintainers
7
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/dev-server - npm Package Compare versions

Comparing version 0.0.12 to 0.0.13

6

CHANGELOG.md
# @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 @@

2

dist/startDevServer.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc