New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

smart-restart

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smart-restart - npm Package Compare versions

Comparing version 2.6.0-beta.2 to 2.6.0-beta.3

11

ModuleGraph.js

@@ -38,9 +38,8 @@ "use strict";

}
if (parentId === id) {
throw new Error(`parentId === id`);
const mod = this.getOrCreate(id);
if (parentId !== id) {
const parent = this.getOrCreate(parentId);
mod.parents.add(parent);
parent.children.add(mod);
}
const mod = this.getOrCreate(id);
const parent = this.getOrCreate(parentId);
mod.parents.add(parent);
parent.children.add(mod);
}

@@ -47,0 +46,0 @@ delete(ids) {

{
"name": "smart-restart",
"version": "2.6.0-beta.2",
"version": "2.6.0-beta.3",
"description": "Like nodemon but only watches require()d files. Like piping but easy to use with node-inspector.",

@@ -5,0 +5,0 @@ "engines": {

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