@lokascript/core 1.1.4 → 1.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lokascript/core",
3
- "version": "1.1.4",
3
+ "version": "1.2.0",
4
4
  "description": "Multilingual, tree-shakeable hyperscript",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -54,6 +54,7 @@ export {
54
54
  BLOCK_IMPLEMENTATIONS,
55
55
  STYLE_COMMANDS,
56
56
  ELEMENT_ARRAY_COMMANDS,
57
+ MORPH_COMMANDS,
57
58
  getAvailableCommands,
58
59
  getAvailableBlocks,
59
60
  getCommandImplementations,
@@ -61,6 +62,15 @@ export {
61
62
  type CodeFormat,
62
63
  } from './templates';
63
64
 
65
+ // Parser templates (for tree-shakeable bundle generation)
66
+ export {
67
+ LITE_PARSER_TEMPLATE,
68
+ HYBRID_PARSER_TEMPLATE,
69
+ getParserTemplate,
70
+ canUseLiteParser,
71
+ LITE_PARSER_COMMANDS,
72
+ } from './parser-templates';
73
+
64
74
  // Template capabilities (what's available in lite vs full runtime)
65
75
  export {
66
76
  AVAILABLE_COMMANDS,