File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ # 0.6.4 - 8 Sep 2023
2
+ Bug fix:
3
+ - Fix createElement not rendering
4
+
1
5
# 0.6.3 - 8 Sep 2023
2
6
Improvement:
3
7
- Switch to Kita
Original file line number Diff line number Diff line change 29
29
"license" : " MIT" ,
30
30
"scripts" : {
31
31
"dev" : " bun run --watch example/index.tsx" ,
32
- "test" : " bun wiptest && npm run test:node" ,
32
+ "test" : " bun test && npm run test:node" ,
33
33
"test:node" : " npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js" ,
34
34
"build" : " rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json" ,
35
35
"release" : " npm run build && npm run test && npm publish --access public"
Original file line number Diff line number Diff line change 1
1
// @ts -ignore
2
- const { compile , Fragment } = require ( '@kitajs/html' )
2
+ const { createElement , Fragment } = require ( '@kitajs/html' )
3
3
4
4
// @ts -ignore
5
- globalThis . ElysiaJSX = compile
5
+ globalThis . ElysiaJSX = createElement
6
6
// @ts -ignore
7
7
globalThis . ElysiaJSX . Fragment = Fragment
8
8
You can’t perform that action at this time.
0 commit comments