Skip to content

Commit

Permalink
Merge branch 'release/1.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Jun 2, 2021
2 parents 5c53920 + 436b47d commit 64f51cd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@

All notable changes to this project will be documented in this file.

## 1.0.6 - 2021-06-01
### Fixed
* Fixed build of `dist/index.d.ts` to have the correct default export by sourcing `index.ts`

## 1.0.5 - 2021-06-01
### Changed
### Fixed
* Fixed `respectExternal` setting

## 1.0.4 - 2021-06-01
Expand Down
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,4 +174,4 @@ interface CriticalPluginConfig {
*/
declare function PluginCritical(pluginConfig: CriticalPluginConfig, callback?: Function): Plugin;

export { CriticalPages, CriticalPluginConfig, PluginCritical };
export default PluginCritical;
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": "rollup-plugin-critical",
"version": "1.0.5",
"version": "1.0.6",
"description": "Rollup plugin to generate critical CSS.",
"author": "nystudio107",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion rollup.types.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import dts from 'rollup-plugin-dts';
* @type [import('rollup').RollupOptions]
*/
export default {
input: './src/@types/rollup-plugin-critical.d.ts',
input: './src/index.ts',
plugins: [dts()],
output: {
file: './dist/index.d.ts',
Expand Down

0 comments on commit 64f51cd

Please sign in to comment.