karma-rollup-preprocessor
Advanced tools
Comparing version 3.0.2 to 3.0.3
@@ -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 |
@@ -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(); |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13552
164