Skip to content
This repository has been archived by the owner on Mar 15, 2020. It is now read-only.

Commit

Permalink
9.1.0 release (#191)
Browse files Browse the repository at this point in the history
9.1.0 release
  • Loading branch information
Comandeer committed Sep 19, 2019
2 parents a2ca71a + 9705fb5 commit 49f5409
Show file tree
Hide file tree
Showing 41 changed files with 15,403 additions and 314 deletions.
5 changes: 5 additions & 0 deletions .jsdocrc
@@ -0,0 +1,5 @@
{
"plugins": [
"plugins/markdown"
]
}
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -7,6 +7,10 @@ node_js:
- 12
- 10
- 8
branches:
only:
- master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
install:
- npm install
- npm install --global npx
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

---

## [9.1.0] – 2019-09-20
### Added
* [#140] API docs.

### Changed
* [#187] Bump `babel-preset-minify` dependency to `^0.5.1`.

## [9.0.0] – 2019-06-29
### Added
* [#159] Support for Node 12.
Expand Down Expand Up @@ -176,12 +183,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#133]: https://github.com/Comandeer/rollup-plugin-babel-minify/issues/133
[#137]: https://github.com/Comandeer/rollup-plugin-babel-minify/issues/137
[#138]: https://github.com/Comandeer/rollup-plugin-babel-minify/issues/138
[#140]: https://github.com/Comandeer/rollup-plugin-babel-minify/issues/140
[#143]: https://github.com/Comandeer/rollup-plugin-babel-minify/pull/143
[#144]: https://github.com/Comandeer/rollup-plugin-babel-minify/issues/144
[#146]: https://github.com/Comandeer/rollup-plugin-babel-minify/issues/146
[#159]: https://github.com/Comandeer/rollup-plugin-babel-minify/issues/159
[#169]: https://github.com/Comandeer/rollup-plugin-babel-minify/issues/169
[#187]: https://github.com/Comandeer/rollup-plugin-babel-minify/issues/187

[9.1.0]: https://github.com/Comandeer/rollup-plugin-babel-minify/compare/v9.0.0...v9.1.0
[9.0.0]: https://github.com/Comandeer/rollup-plugin-babel-minify/compare/v8.0.0...v9.0.0
[8.0.0]: https://github.com/Comandeer/rollup-plugin-babel-minify/compare/v7.0.0...v8.0.0
[7.0.0]: https://github.com/Comandeer/rollup-plugin-babel-minify/compare/v6.2.0...v7.0.0
Expand Down
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -38,6 +38,8 @@ There are additional options:
* [`@comandeer/babel-plugin-banner`](https://www.npmjs.com/package/@comandeer/babel-plugin-banner),
* [`@babel/plugin-syntax-dynamic-import`](https://www.npmjs.com/package/@babel/plugin-syntax-dynamic-import) (since 7.0.0).

Check [API docs](https://comandeer.github.io/rollup-plugin-babel-minify) for more detailed description.

## License

See [LICENSE](./LICENSE) file for details.
108 changes: 108 additions & 0 deletions docs/MinifyOptions.jsdoc.html
@@ -0,0 +1,108 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: MinifyOptions.jsdoc</title>

<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>

<body>

<div id="main">

<h1 class="page-title">Source: MinifyOptions.jsdoc</h1>






<section>
<article>
<pre class="prettyprint source linenums"><code>/**
* Additional options accepted by {@link MinifyPlugin}. All options accepted by `babel-preset-minify`
* are also handled by the plugin.
*
* @see {@link https://github.com/babel/minify/blob/master/packages/babel-preset-minify/README.md#options &lt;code>babel-preset-minify&lt;/code> options}
* @interface MinifyOptions
* @memberof module:rollup-plugin-babel-minify
*/

/**
* Indicates if comments should be preserved in source.
*
* @member {boolean} [comments=true]
* @memberof module:rollup-plugin-babel-minify.MinifyOptions
*/

/**
* The comment which should be prepended to the transformed bundle.
* Function generating banner comment is also accepted.
*
* @member {string/function} [banner]
* @memberof module:rollup-plugin-babel-minify.MinifyOptions
*/

/**
* Indicates if the banner comment should be followed by a new line.
*
* @since 4.0.0
* @member {boolean} [bannerNewLine=false]
* @memberof module:rollup-plugin-babel-minify.MinifyOptions
*/

/**
* Indicates whether sourcemap should be generated.
*
* @member {boolean} [sourceMap=true]
* @memberof module:rollup-plugin-babel-minify.MinifyOptions
*/

/**
* Indicates which Babel plugins should be loaded alongside minify preset;
* two plugins are loaded by default:
* * [`@comandeer/babel-plugin-banner`](https://www.npmjs.com/package/@comandeer/babel-plugin-banner),
* * [`@babel/plugin-syntax-dynamic-import`](https://www.npmjs.com/package/@babel/plugin-syntax-dynamic-import) (since 7.0.0).
*
* @since 6.2.0
* @member {module:rollup-plugin-babel-minify.BabelPlugin[]} [plugins]
* @memberof module:rollup-plugin-babel-minify.MinifyOptions
*/

/**
* Babel plugin.
*
* @see {@link https://babeljs.io/docs/en/plugins Plugins in Babel documentation}
* @typedef {Object} BabelPlugin
* @memberof module:rollup-plugin-babel-minify
*/
</code></pre>
</article>
</section>




</div>

<nav>
<h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-rollup-plugin-babel-minify.html">rollup-plugin-babel-minify</a></li></ul><h3>Interfaces</h3><ul><li><a href="module-rollup-plugin-babel-minify.MinifyOptions.html">MinifyOptions</a></li><li><a href="module-rollup-plugin-babel-minify.MinifyPlugin.html">MinifyPlugin</a></li></ul>
</nav>

<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Fri Sep 20 2019 00:56:46 GMT+0200 (Central European Summer Time)
</footer>

<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>
84 changes: 84 additions & 0 deletions docs/MinifyPlugin.jsdoc.html
@@ -0,0 +1,84 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: MinifyPlugin.jsdoc</title>

<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>

<body>

<div id="main">

<h1 class="page-title">Source: MinifyPlugin.jsdoc</h1>






<section>
<article>
<pre class="prettyprint source linenums"><code>/**
* Rollup plugin that enables usage of `babel-preset-minify` with Rollup.
*
* @interface MinifyPlugin
* @memberof module:rollup-plugin-babel-minify
*/

/**
* Plugin's name.
*
* @readonly
* @member {string} [name='babel-minify']
* @memberof module:rollup-plugin-babel-minify.MinifyPlugin
*/

/**
* Method transforming Rollup's output options to prevent double insertion of the banner comment.
*
* @since 8.0.0
* @readonly
* @see {@link http://rollupjs.org/guide/en/#outputoptions &lt;code>outputOptions&lt;/code> hook in Rollup's documentation}
* @member {function} outputOptions
* @memberof module:rollup-plugin-babel-minify.MinifyPlugin
*/

/**
* Method performing the actual minification.
*
* @readonly
* @see {@link http://rollupjs.org/guide/en/#renderchunk &lt;code>renderChunk&lt;/code> hook in Rollup's documentation}
* @member {function} renderChunk
* @memberof module:rollup-plugin-babel-minify.MinifyPlugin
*/
</code></pre>
</article>
</section>




</div>

<nav>
<h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-rollup-plugin-babel-minify.html">rollup-plugin-babel-minify</a></li></ul><h3>Interfaces</h3><ul><li><a href="module-rollup-plugin-babel-minify.MinifyOptions.html">MinifyOptions</a></li><li><a href="module-rollup-plugin-babel-minify.MinifyPlugin.html">MinifyPlugin</a></li></ul>
</nav>

<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.3</a> on Fri Sep 20 2019 00:56:46 GMT+0200 (Central European Summer Time)
</footer>

<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>
Binary file added docs/fonts/OpenSans-Bold-webfont.eot
Binary file not shown.

0 comments on commit 49f5409

Please sign in to comment.