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

rollup-watch

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-watch - npm Package Compare versions

Comparing version 3.2.1 to 3.2.2

7

CHANGELOG.md
# rollup-watch changelog
## 3.2.2
* Fix missing `require-relative` ([#41](https://github.com/rollup/rollup-watch/pull/41))
* Prevent infinite build loops
## 3.2.1
* Fix missing `require-relative`
* Published mistakenly

@@ -7,0 +12,0 @@ ## 3.2.0

7

dist/rollup-watch.cjs.js

@@ -125,6 +125,3 @@ 'use strict';

timeout = setTimeout( () => {
if ( !building ) {
rebuildScheduled = false;
build();
}
if ( !building ) { build(); }
}, 50 );

@@ -136,2 +133,4 @@ }

rebuildScheduled = false;
let start = Date.now();

@@ -138,0 +137,0 @@ let initial = !watching;

@@ -123,6 +123,3 @@ import EventEmitter from 'events';

timeout = setTimeout( () => {
if ( !building ) {
rebuildScheduled = false;
build();
}
if ( !building ) { build(); }
}, 50 );

@@ -134,2 +131,4 @@ }

rebuildScheduled = false;
let start = Date.now();

@@ -136,0 +135,0 @@ let initial = !watching;

{
"name": "rollup-watch",
"version": "3.2.1",
"version": "3.2.2",
"description": "Watch files for changes and perform incremental rebuilds with Rollup",

@@ -32,3 +32,3 @@ "main": "dist/rollup-watch.cjs.js",

"dependencies": {
"require-relative": "0.8.7"
},

@@ -38,8 +38,9 @@ "devDependencies": {

"mocha": "^3.2.0",
"require-relative": "0.8.7",
"rollup": "^0.39.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-json": "^2.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"sander": "^0.6.0"
}
}

@@ -76,6 +76,3 @@ import EventEmitter from 'events';

timeout = setTimeout( () => {
if ( !building ) {
rebuildScheduled = false;
build();
}
if ( !building ) build();
}, 50 );

@@ -87,2 +84,4 @@ }

rebuildScheduled = false;
let start = Date.now();

@@ -89,0 +88,0 @@ let initial = !watching;

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