Skip to content

Commit

Permalink
3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzzy committed May 20, 2020
1 parent 74d4f83 commit 52c6b14
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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).

## [Unreleased](unreleased)
## [3.3.0] - 2020-05-20

- Add `unpkg`, `jsdelivr` and `exports` fields to package.json
([#18](https://github.com/kriasoft/hyperapp-render/pull/18)).
Expand Down Expand Up @@ -56,7 +56,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.2.0...HEAD
[unreleased]: https://github.com/kriasoft/hyperapp-render/compare/v3.3.0...HEAD
[3.3.0]: https://github.com/kriasoft/hyperapp-render/compare/v3.2.0...v3.3.0
[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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ npm install hyperapp-render --save
```

Or using a [CDN](https://en.wikipedia.org/wiki/Content_delivery_network) like
[unpkg.com](https://unpkg.com/hyperapp-render/hyperapp-render.min.js) or
[jsDelivr](https://cdn.jsdelivr.net/npm/hyperapp-render/hyperapp-render.min.js)
[unpkg.com](https://unpkg.com/hyperapp-render) or
[jsDelivr](https://cdn.jsdelivr.net/npm/hyperapp-render)
with the following script tag:

```html
<script src="https://unpkg.com/hyperapp-render/hyperapp-render.min.js"></script>
<script src="https://unpkg.com/hyperapp-render"></script>
```

You can find the library in `window.hyperappRender`.
Expand Down
2 changes: 1 addition & 1 deletion 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.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 package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "hyperapp-render",
"version": "3.2.0",
"version": "3.3.0",
"description": "Render Hyperapp to an HTML string with SSR and Node.js streaming support",
"repository": "kriasoft/hyperapp-render",
"author": "Vladimir Kutepov",
Expand Down
3 changes: 1 addition & 2 deletions tools/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ async function build() {
sourcemap: true,
exports: 'named',
name: file.name,
banner:
'/*! Hyperapp Render | MIT Licence | https://github.com/kriasoft/hyperapp-render */\n',
banner: `/*! Hyperapp Render v${pkg.version} | MIT Licence | https://github.com/kriasoft/hyperapp-render */\n`,
})
}),
)
Expand Down

0 comments on commit 52c6b14

Please sign in to comment.