Skip to content

Commit 4b987e9

Browse files
committed
With this commit we resolve issues of dependencies that work well in node but not in the browser. Now when we run the build command, we can succesfully run the application. Still we need to bundle the whole compiled javascript into the html, itself.
1 parent 7a6fa4e commit 4b987e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/application/CircuitService.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { EventEmitter } from 'events';
1+
import { EventEmitter } from '../utils/EventEmitter.js';
22
import { Circuit } from '../domain/aggregates/Circuit.js';
33
import { Element } from '../domain/entities/Element.js';
44
import { generateId } from '../utils/idGenerator.js';

src/gui/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Circuit } from '../domain/aggregates/Circuit.js';
22
import { CircuitService } from '../application/CircuitService.js';
33
import { GUIAdapter } from './adapters/GUIAdapter.js';
44
import { ElementRegistry, rendererFactory, GUICommandRegistry } from '../config/settings.js'; // Assuming ElementRegistry is configured in settings.js
5-
import document from 'document'; // Assuming document is a global object
5+
// import document from 'document'; // Assuming document is a global object
66

77
// Set up the circuit and services
88
const circuit = new Circuit();

0 commit comments

Comments
 (0)