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 2.1.1 to 2.2.0

4

CHANGELOG.md
# rollup-watch changelog
## 2.2.0
* Emit errors and recover ([#2](https://github.com/rollup/rollup-watch/issues/2))
## 2.1.1

@@ -4,0 +8,0 @@

10

dist/rollup-watch.cjs.js

@@ -28,3 +28,3 @@ 'use strict';

var name = "rollup-watch";
var version = "2.1.1";
var version = "2.2.0";

@@ -127,3 +127,9 @@ function checkVersion ( name, localVersion ) {

});
}, function (error) {
emitter.emit( 'event', {
code: 'ERROR',
error: error
});
})
.then( function () {
building = false;

@@ -130,0 +136,0 @@ if ( rebuildScheduled ) build();

@@ -24,3 +24,3 @@ import EventEmitter from 'events';

var name = "rollup-watch";
var version = "2.1.1";
var version = "2.2.0";

@@ -123,3 +123,9 @@ function checkVersion ( name, localVersion ) {

});
}, function (error) {
emitter.emit( 'event', {
code: 'ERROR',
error: error
});
})
.then( function () {
building = false;

@@ -126,0 +132,0 @@ if ( rebuildScheduled ) build();

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

@@ -5,0 +5,0 @@ "main": "dist/rollup-watch.cjs.js",

@@ -89,3 +89,9 @@ import EventEmitter from 'events';

});
}, error => {
emitter.emit( 'event', {
code: 'ERROR',
error
});
})
.then( () => {
building = false;

@@ -92,0 +98,0 @@ if ( rebuildScheduled ) build();

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