mini-jsx-test-pb 0.0.2 → 0.0.3

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/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { jsx as h } from './jsx-runtime.js';
1
+ export { jsxDEV as h } from './jsx-dev-runtime.js';
2
2
 
3
3
  type Effect = () => void;
4
4
  declare function State<T>(initial: T): {
@@ -0,0 +1,3 @@
1
+ declare function h(type: any, props: any, ...children: any[]): any;
2
+
3
+ export { h as jsxDEV };
@@ -0,0 +1,6 @@
1
+ import {
2
+ h
3
+ } from "./chunk-NTNB5Y37.js";
4
+ export {
5
+ h as jsxDEV
6
+ };
@@ -1,3 +1 @@
1
- declare function h(type: any, props: any, ...children: any[]): any;
2
-
3
- export { h as jsx, h as jsxDEV, h as jsxs };
1
+ export { jsxDEV as jsx, jsxDEV, jsxDEV as jsxs } from './jsx-dev-runtime.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mini-jsx-test-pb",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -19,7 +19,7 @@
19
19
  "dist"
20
20
  ],
21
21
  "scripts": {
22
- "build": "tsup src/index.ts src/jsx-runtime.ts --format esm --dts",
22
+ "build": "tsup src/index.ts src/jsx-runtime.ts src/jsx-dev-runtime.ts --format esm --dts",
23
23
  "dev": "tsup src/index.ts --format esm --dts --watch"
24
24
  },
25
25
  "devDependencies": {