Skip to content

Commit

Permalink
3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzzy committed May 14, 2020
1 parent 54f7e89 commit 530ded7
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [3.2.0] - 2020-05-14

- Add support for `Lazy` component from Hyperapp v2
([#16](https://github.com/kriasoft/hyperapp-render/pull/16)).

## [3.1.0] - 2019-03-18

- Ignore `innerHTML` attribute when child nodes exist.
Expand Down Expand Up @@ -46,7 +51,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- Initial public release.

[unreleased]: https://github.com/kriasoft/hyperapp-render/compare/v3.1.0...HEAD
[unreleased]: https://github.com/kriasoft/hyperapp-render/compare/v3.2.0...HEAD
[3.2.0]: https://github.com/kriasoft/hyperapp-render/compare/v3.1.0...v3.2.0
[3.1.0]: https://github.com/kriasoft/hyperapp-render/compare/v3.0.0...v3.1.0
[3.0.0]: https://github.com/kriasoft/hyperapp-render/compare/v2.1.0...v3.0.0
[2.1.0]: https://github.com/kriasoft/hyperapp-render/compare/v2.0.0...v2.1.0
Expand Down
8 changes: 6 additions & 2 deletions dist/hyperapp-render.js

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

2 changes: 1 addition & 1 deletion dist/hyperapp-render.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/hyperapp-render.min.js

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

2 changes: 1 addition & 1 deletion dist/hyperapp-render.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "hyperapp-render",
"version": "3.1.0",
"version": "3.2.0",
"description": "Render Hyperapp to an HTML string with SSR and Node.js streaming support",
"repository": "kriasoft/hyperapp-render",
"author": "Vladimir Kutepov",
Expand Down
1 change: 0 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ function resolveNode(node, state, actions) {
if (node && node.type === 2) {
return resolveNode(node.lazy.view(node.lazy), state, actions)
}

return node
}

Expand Down
1 change: 1 addition & 0 deletions tools/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ async function build() {
loose: true,
useBuiltIns: 'entry',
exclude: ['transform-typeof-symbol'],
corejs: 3,
},
],
],
Expand Down

0 comments on commit 530ded7

Please sign in to comment.