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

browser-sync-reuse-tab

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

browser-sync-reuse-tab - npm Package Compare versions

Comparing version 1.0.1 to 1.0.3

6

CHANGELOG.md
# Changelog
## 2.0.0
## 1.0.2
Module will now try and reference the old location of the BrowserSync utils module before using the new reference (see [here](https://github.com/mike182uk/browser-sync-reuse-tab/commit/98008e540121e5898f6d26fbe2a794493647027a#commitcomment-27257678))
## 1.0.1
Update reference to BrowserSync utils module

@@ -6,0 +10,0 @@

@@ -1,5 +0,13 @@

var browserSyncUtils = require('browser-sync/dist/utils')
var exec = require('child_process').exec
var path = require('path')
var browserSyncUtils = {}
try {
browserSyncUtils = require('browser-sync/lib/utils')
} catch (e) {
// BrowserSync utils moved in a later version of BrowserSync
browserSyncUtils = require('browser-sync/dist/utils')
}
/**

@@ -6,0 +14,0 @@ * Exports

2

package.json
{
"name": "browser-sync-reuse-tab",
"version": "1.0.1",
"version": "1.0.3",
"description": "Attempt to reuse an existing tab that was opened by BrowserSync",

@@ -5,0 +5,0 @@ "main": "index.js",

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