@teachinglab/omd 0.4.7 → 0.4.9
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/index.js +18 -2
- package/package.json +1 -2
package/index.js
CHANGED
|
@@ -11,12 +11,28 @@
|
|
|
11
11
|
* const { omdTable } = await import('@teachinglab/omd')
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
|
-
// Force side-effect imports in dependency order to ensure proper class inheritance
|
|
14
|
+
// Force side-effect imports in strict dependency order to ensure proper class inheritance
|
|
15
|
+
// Level 1: Base node class
|
|
15
16
|
import './omd/nodes/omdNode.js';
|
|
17
|
+
|
|
18
|
+
// Level 2: Classes extending omdNode
|
|
16
19
|
import './omd/nodes/omdLeafNode.js';
|
|
17
|
-
import './omd/nodes/
|
|
20
|
+
import './omd/nodes/omdBinaryExpressionNode.js';
|
|
21
|
+
import './omd/nodes/omdUnaryExpressionNode.js';
|
|
22
|
+
import './omd/nodes/omdParenthesisNode.js';
|
|
23
|
+
import './omd/nodes/omdPowerNode.js';
|
|
24
|
+
import './omd/nodes/omdRationalNode.js';
|
|
25
|
+
import './omd/nodes/omdSqrtNode.js';
|
|
26
|
+
import './omd/nodes/omdFunctionNode.js';
|
|
27
|
+
import './omd/nodes/omdEquationNode.js';
|
|
28
|
+
import './omd/nodes/omdEquationSequenceNode.js';
|
|
29
|
+
import './omd/nodes/omdOperationDisplayNode.js';
|
|
30
|
+
|
|
31
|
+
// Level 3: Classes extending omdLeafNode
|
|
18
32
|
import './omd/nodes/omdConstantNode.js';
|
|
33
|
+
import './omd/nodes/omdOperatorNode.js';
|
|
19
34
|
import './omd/nodes/omdVariableNode.js';
|
|
35
|
+
import './omd/nodes/omdGroupNode.js';
|
|
20
36
|
|
|
21
37
|
// Import everything to ensure proper loading order
|
|
22
38
|
import * as omdCore from './omd/core/index.js';
|
package/package.json
CHANGED