bobe 0.0.71 → 0.0.72
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/bobe.cjs +1 -0
- package/dist/bobe.cjs.map +1 -1
- package/dist/bobe.compiler.cjs +1 -0
- package/dist/bobe.compiler.cjs.map +1 -1
- package/dist/bobe.compiler.esm.js +1 -1
- package/dist/bobe.esm.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.umd.js +1 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +3 -3
|
@@ -2884,5 +2884,5 @@ const effect = (callback, depOrOpt, opt) => {
|
|
|
2884
2884
|
return effect$1(callback, option);
|
|
2885
2885
|
};
|
|
2886
2886
|
|
|
2887
|
-
export { Compiler, FakeType, Mw, MwCtx, NodeType, ParseSyntaxError, Tokenizer, bobe, context, customRender, effect };
|
|
2887
|
+
export { Compiler, FakeType, Interpreter, Mw, MwCtx, NodeType, ParseSyntaxError, Tokenizer, bobe, context, customRender, effect };
|
|
2888
2888
|
//# sourceMappingURL=bobe.compiler.esm.js.map
|
package/dist/bobe.esm.js
CHANGED
|
@@ -2857,5 +2857,5 @@ const effect = (callback, depOrOpt, opt) => {
|
|
|
2857
2857
|
return effect$1(callback, option);
|
|
2858
2858
|
};
|
|
2859
2859
|
|
|
2860
|
-
export { Compiler, FakeType, Mw, MwCtx, NodeType, ParseSyntaxError, Tokenizer, bobe, context, customRender, effect };
|
|
2860
|
+
export { Compiler, FakeType, Interpreter, Mw, MwCtx, NodeType, ParseSyntaxError, Tokenizer, bobe, context, customRender, effect };
|
|
2861
2861
|
//# sourceMappingURL=bobe.esm.js.map
|
package/dist/index.d.ts
CHANGED
|
@@ -627,5 +627,5 @@ declare const context: IContext;
|
|
|
627
627
|
|
|
628
628
|
declare const effect: (callback: (...args: ValueDiff[]) => void, depOrOpt?: Dep[] | Dep | CustomEffectOpt, opt?: CustomEffectOpt) => aoye.Effect;
|
|
629
629
|
|
|
630
|
-
export { Compiler, FakeType, Mw, MwCtx, NodeType, ParseErrorCode, ParseSyntaxError, Tokenizer, bobe, context, customRender, effect };
|
|
630
|
+
export { Compiler, FakeType, Interpreter, Mw, MwCtx, NodeType, ParseErrorCode, ParseSyntaxError, Tokenizer, bobe, context, customRender, effect };
|
|
631
631
|
export type { ASTNodeType, BaseNode, CommentNode, ComponentNode, ConditionalNode, DynamicValue, ElementNode, FragmentNode, IContext, InterpolationNode, LogicNode, LoopNode, ParseError, Program, Property, PropertyKeyNode, PropertyValue, SourceLocation, StaticValue, TemplateNode, TextNode, UI };
|