Socket
Socket
Sign inDemoInstall

@web/dev-server-core

Package Overview
Dependencies
Maintainers
7
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/dev-server-core - npm Package Compare versions

Comparing version 0.3.9 to 0.3.10

6

CHANGELOG.md
# @web/dev-server-core
## 0.3.10
### Patch Changes
- 780a3520: Use http2 config for websocket protocol check
## 0.3.9

@@ -4,0 +10,0 @@

2

dist/web-sockets/webSocketsPlugin.js

@@ -14,3 +14,3 @@ "use strict";

var _a;
origin = `ws${config.sslCert ? 's' : ''}://${(_a = config.hostname) !== null && _a !== void 0 ? _a : 'localhost'}:${config.port}`;
origin = `ws${config.http2 ? 's' : ''}://${(_a = config.hostname) !== null && _a !== void 0 ? _a : 'localhost'}:${config.port}`;
},

@@ -17,0 +17,0 @@ resolveImport({ source }) {

{
"name": "@web/dev-server-core",
"version": "0.3.9",
"version": "0.3.10",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

@@ -14,3 +14,3 @@ import { Plugin } from '../plugins/Plugin';

serverStart({ config }) {
origin = `ws${config.sslCert ? 's' : ''}://${config.hostname ?? 'localhost'}:${config.port}`;
origin = `ws${config.http2 ? 's' : ''}://${config.hostname ?? 'localhost'}:${config.port}`;
},

@@ -17,0 +17,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