Skip to content

Commit

Permalink
v0.0.30
Browse files Browse the repository at this point in the history
  • Loading branch information
yandeu committed Feb 28, 2022
1 parent f4e1f8e commit 30502ac
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bundles/nano.core.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 bundles/nano.full.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundles/nano.slim.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundles/nano.ui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion deno_lib/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export const h = (tagNameOrComponent: any, props: any = {}, ...children: any[])
if (0 !== p.indexOf('on')) return false

// we return true if SSR, since otherwise it will get rendered
if (el.ssr) return true
if (el._ssr) return true

// check if the event is present in the element as object (null) or as function
return typeof el[p] === 'object' || typeof el[p] === 'function'
Expand Down
2 changes: 1 addition & 1 deletion deno_lib/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
export const VERSION = '0.0.30-dev.1'
export const VERSION = '0.0.30'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nano-jsx",
"version": "0.0.30-dev.1",
"version": "0.0.30",
"description": "SSR first, lightweight 1kB JSX library.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
export const VERSION = '0.0.30-dev.1'
export const VERSION = '0.0.30'

0 comments on commit 30502ac

Please sign in to comment.