@teachinglab/omd 0.4.5 → 0.4.6
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 +8 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -11,7 +11,14 @@
|
|
|
11
11
|
* const { omdTable } = await import('@teachinglab/omd')
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
|
-
//
|
|
14
|
+
// Force side-effect imports in dependency order to ensure proper class inheritance
|
|
15
|
+
import './omd/nodes/omdNode.js';
|
|
16
|
+
import './omd/nodes/omdLeafNode.js';
|
|
17
|
+
import './omd/nodes/omdOperatorNode.js';
|
|
18
|
+
import './omd/nodes/omdConstantNode.js';
|
|
19
|
+
import './omd/nodes/omdVariableNode.js';
|
|
20
|
+
|
|
21
|
+
// Import everything to ensure proper loading order
|
|
15
22
|
import * as omdCore from './omd/core/index.js';
|
|
16
23
|
import * as omdCanvas from './canvas/index.js';
|
|
17
24
|
import * as omdVisualizations from './src/index.js';
|