babel-plugin-essor 0.0.15 → 0.0.16-beta.2
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.cjs +2034 -2426
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +2030 -2427
- package/dist/index.js.map +1 -1
- package/package.json +3 -4
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { PluginObj } from '@babel/core';
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Babel plugin for Essor framework.
|
|
5
|
+
* Transforms Essor JSX and reactivity syntax into runtime calls.
|
|
6
|
+
*
|
|
7
|
+
* @returns {PluginObj} The Babel plugin object.
|
|
8
|
+
*/
|
|
3
9
|
declare function export_default(): PluginObj;
|
|
4
10
|
|
|
5
11
|
export { export_default as default };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { PluginObj } from '@babel/core';
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Babel plugin for Essor framework.
|
|
5
|
+
* Transforms Essor JSX and reactivity syntax into runtime calls.
|
|
6
|
+
*
|
|
7
|
+
* @returns {PluginObj} The Babel plugin object.
|
|
8
|
+
*/
|
|
3
9
|
declare function export_default(): PluginObj;
|
|
4
10
|
|
|
5
11
|
export { export_default as default };
|