Skip to content

Commit

Permalink
Release 7.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jlmakes committed Feb 7, 2022
1 parent de386a6 commit 7922333
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 31 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [7.0.8] - 2022-02-06

### Fixed

- Watcher not working using TypeScript [@YonatanKra](https://github.com/YonatanKra) [#72](https://github.com/jlmakes/karma-rollup-preprocessor/issues/72]

## [7.0.7] - 2021-03-14

### Fixed
Expand Down Expand Up @@ -252,6 +258,7 @@ A special thanks to [@klaascuvelier](https://github.com/klaascuvelier) who origi

Hello ![heart](http://i.imgur.com/oXJmdtz.gif) World

[7.0.8]: https://github.com/jlmakes/karma-rollup-preprocessor/compare/7.0.7...7.0.8
[7.0.7]: https://github.com/jlmakes/karma-rollup-preprocessor/compare/7.0.6...7.0.7
[7.0.6]: https://github.com/jlmakes/karma-rollup-preprocessor/compare/7.0.5...7.0.6
[7.0.5]: https://github.com/jlmakes/karma-rollup-preprocessor/compare/7.0.4...7.0.5
Expand Down
39 changes: 10 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,43 +1,24 @@
<p align="center">
<img src="https://jlmakes.com/logos/png/karma-rollup-preprocessor.png?v=1" width="200px" >
</p>

<br>

<p align="center">
<img src="https://jlmakes.com/logos/svg/karma-rollup-logotype.svg" width="200px" alt="Karma + Rollup">
</p>
# `karma-rollup-preprocessor`

<p align="center">Karma preprocessor to bundle ES modules using <a href="http://rollupjs.org/">Rollup</a>.</p>
Karma preprocessor to bundle ES modules using Rollup.

<p align="center">
<p>
<a href="https://travis-ci.org/jlmakes/karma-rollup-preprocessor">
<img src="https://img.shields.io/travis/jlmakes/karma-rollup-preprocessor.svg" alt="Build Status">
</a>
<a href="https://david-dm.org/jlmakes/karma-rollup-preprocessor">
<img src="https://img.shields.io/david/jlmakes/karma-rollup-preprocessor.svg" alt="Dependency Status">
<img src="https://img.shields.io/travis/jlmakes/karma-rollup-preprocessor?color=black&style=for-the-badge" alt="Build Status">
</a>
<a href="https://www.npmjs.com/package/karma-rollup-preprocessor">
<img src="https://img.shields.io/npm/dm/karma-rollup-preprocessor.svg" alt="Downloads">
<img src="https://img.shields.io/npm/dm/karma-rollup-preprocessor?color=black&style=for-the-badge" alt="Downloads">
</a>
<a href="https://www.npmjs.com/package/karma-rollup-preprocessor">
<img src="https://img.shields.io/npm/v/karma-rollup-preprocessor.svg" alt="Version">
<img src="https://img.shields.io/npm/v/karma-rollup-preprocessor?color=black&style=for-the-badge" alt="Version">
</a>
<a href="https://opensource.org/licenses/MIT">
<img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="MIT License">
<img src="https://img.shields.io/badge/license-MIT-blue?color=black&style=for-the-badge" alt="MIT License">
</a>
</p>

<br>

## Features

- Rebundles your files when watched dependencies change
- Caches bundle output for improved performance
- Maintained with ![heart](http://i.imgur.com/oXJmdtz.gif) by [@jlmakes](https://twitter.com/jlmakes)

<br>

## Installation

```bash
Expand All @@ -56,7 +37,7 @@ Below is a well-founded recommendation using the [Bublé](https://buble.surge.sh

```js
// karma.conf.js
module.exports = function(config) {
module.exports = function (config) {
config.set({
files: [
/**
Expand Down Expand Up @@ -94,7 +75,7 @@ Below shows an example where [configured preprocessors](http://karma-runner.gith

```js
// karma.conf.js
module.exports = function(config) {
module.exports = function (config) {
config.set({
files: [{ pattern: 'test/**/*.spec.js', watched: false }],

Expand Down Expand Up @@ -129,4 +110,4 @@ module.exports = function(config) {
}
```

Happy bundling!
Happy bundling! ![heart](http://i.imgur.com/oXJmdtz.gif)
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "karma-rollup-preprocessor",
"version": "7.0.7",
"version": "7.0.8",
"description": "Karma preprocessor to bundle ES modules using Rollup",
"main": "lib/index.js",
"engines": {
Expand Down

0 comments on commit 7922333

Please sign in to comment.