kt.js 0.6.16 → 0.6.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/jsx-runtime.mjs +1 -1
- package/package.json +3 -3
package/dist/jsx-runtime.mjs
CHANGED
|
@@ -59,7 +59,7 @@ function Fragment(props) {
|
|
|
59
59
|
* JSX Development runtime - same as jsx but with additional dev checks
|
|
60
60
|
*/
|
|
61
61
|
const jsxDEV = (...args) => {
|
|
62
|
-
console.log('JSX
|
|
62
|
+
console.log('JSX DEV called:', ...args);
|
|
63
63
|
return jsx(...args);
|
|
64
64
|
};
|
|
65
65
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kt.js",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.18",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Kasukabe Tsumugi",
|
|
6
6
|
"email": "futami16237@gmail.com"
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
],
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@ktjs/
|
|
45
|
-
"@ktjs/
|
|
44
|
+
"@ktjs/jsx": "0.6.18",
|
|
45
|
+
"@ktjs/core": "0.6.17",
|
|
46
46
|
"@ktjs/shortcuts": "0.6.6"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|