Releases: jorgebucaran/hyperapp
Releases · jorgebucaran/hyperapp
0.0.11
- Resolved issue with reducers overriding each other.
- Modified
.replace
callback to avoid arrow functions for necessary bound arguments.
0.0.10
CDN Updates
Include Hyperapp in your project using our CDN:
<script src="https://cdn.rawgit.com/hyperapp/hyperapp/0.0.10/dist/hyperapp.min.js"></script>
or
<script src="https://cdn.rawgit.com/hyperapp/hyperapp/0.0.10/dist/app.min.js"></script>
<script src="https://cdn.rawgit.com/hyperapp/hyperapp/0.0.10/dist/html.min.js"></script>
<script src="https://cdn.rawgit.com/hyperapp/hyperapp/0.0.10/dist/h.min.js"></script>
Changes
0.0.9
0.0.8
Resolved an issue with the h
function for better JSX compatibility. The tree structure now correctly handles arrays, ensuring smoother integration with JSX syntax.
0.0.7
CDN for Hyperapp
To use Hyperapp in your project, include the following scripts from our CDN:
<script src="https://cdn.rawgit.com/hyperapp/hyperapp/0.0.7/dist/app.min.js"></script>
<script src="https://cdn.rawgit.com/hyperapp/hyperapp/0.0.7/dist/html.min.js"></script>
<script src="https://cdn.rawgit.com/hyperapp/hyperapp/0.0.7/dist/h.min.js"></script>
- For
h
Function: If you're directly using theh
function or compiling JSX to rawh
calls within your bundle, the inclusion ofhtml.min.js
is not required. - JSX Compatibility: The
h
function has been added to the distribution to support JSX usage. - For details on performance considerations, refer to the performance discussion.