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

karma-rollup-preprocessor

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-rollup-preprocessor - npm Package Compare versions

Comparing version 3.0.2 to 3.0.3

10

CHANGELOG.md

@@ -8,2 +8,10 @@ # Change Log

## [3.0.3] - 2017-01-03
### Changed
- Added callback to `fs.utimes` to silence deprecation warning. [@FezVrasta](https://github.com/FezVrasta) [#18](https://github.com/jlmakes/karma-rollup-preprocessor/pull/18)
### Removed
- Dropped support for Node `0.12`.
## [3.0.2] - 2016-12-29

@@ -75,2 +83,4 @@

[3.0.3]: https://github.com/jlmakes/karma-rollup-preprocessor/compare/3.0.2...3.0.3
[3.0.2]: https://github.com/jlmakes/karma-rollup-preprocessor/compare/3.0.1...3.0.2
[3.0.1]: https://github.com/jlmakes/karma-rollup-preprocessor/compare/3.0.0...3.0.1

@@ -77,0 +87,0 @@ [3.0.0]: https://github.com/jlmakes/karma-rollup-preprocessor/compare/2.0.2...3.0.0

5

lib/index.js

@@ -22,4 +22,5 @@ 'use strict';

for (var dependant of staleDependants.values()) {
fs.utimes(dependant, now, now);
log.debug('Recompiling dependant %s', dependant);
fs.utimes(dependant, now, now, function() {
log.debug('Recompiling dependant %s', dependant);
});
}

@@ -26,0 +27,0 @@ staleDependants.clear();

2

package.json
{
"name": "karma-rollup-preprocessor",
"version": "3.0.2",
"version": "3.0.3",
"description": "Karma preprocessor to bundle ES2015 modules using Rollup",

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

@@ -76,2 +76,2 @@ <p align="center"><img width="200"src="https://jlmak.es/logos/png/karma-rollup-preprocessor.png?v=1"></p>

Supports all Rollup plug-ins, and works on Node `0.12.x` and up. Happy bundling!
Supports all Rollup plug-ins, and works on Node `4` and up. Happy bundling!

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