Skip to content

Commit ee510e0

Browse files
committed
Integration testing & bug fixing
1 parent 36fa346 commit ee510e0

14 files changed

Lines changed: 1076 additions & 106 deletions

File tree

frontend/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
<head>
44
<meta charset="utf-8">
5-
<title>Megahub Dev Environment</title>
5+
<title>Megahub IDE</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
67
<link rel="stylesheet" href="/src/styles.css" />
78
</head>
89

frontend/package-lock.json

Lines changed: 288 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
"preview": "vite preview"
99
},
1010
"devDependencies": {
11+
"browserlist": "^1.0.2",
12+
"lightningcss": "^1.30.2",
1113
"vite": "^5.0.0",
1214
"vite-plugin-compression": "^0.5.1"
1315
},

frontend/project.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
<head>
44
<meta charset="utf-8">
5-
<title>Megahub Dev Environment</title>
5+
<title>Megahub IDE</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
67
<link rel="stylesheet" href="/src/styles.css" />
78
</head>
89

@@ -11,10 +12,10 @@
1112
<custom-header id="header" class="layout-header"></custom-header>
1213
<custom-blockly id="blockly" class="layout-content"></custom-blockly>
1314
<div class="layout-sidebar">
14-
<button class="reset" id="reset">Reset workspace</button>
15-
<button class="syntaxcheck" id="syntaxcheck">Perform a syntax check</button>
16-
<button class="execute" id="execute">Execute!</button>
17-
<button class="stop" id="stop">Stop!</button>
15+
<button class="btn btn-success reset" id="reset">Reset workspace</button>
16+
<button class="btn btn-success btn syntaxcheck" id="syntaxcheck">Syntax check</button>
17+
<button class="btn btn-primary execute" id="execute">Execute!</button>
18+
<button class="btn btn-success stop" id="stop">Stop!</button>
1819
<custom-lua-preview id="luapreview"></custom-lua-preview>
1920
<custom-ui id="uicomponents"></custom-ui>
2021
</div>

0 commit comments

Comments
 (0)