Skip to content

Commit eba39fd

Browse files
committed
fixed some type
1 parent 28f8128 commit eba39fd

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

app/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ app.get('/pio/:env/:port', function (req, res) {
154154
if (close)
155155
params.push('--upload-port',port)
156156
console.log(); //if removed - process hangs :)
157-
(close && store.mods.serial ? sore.mods.serial.close(port) : Promise.resolve(true))
157+
(close && store.mods.serial ? store.mods.serial.close(port) : Promise.resolve(true))
158158
.then(pioRoot)
159159
.then(file => {
160160
var cmd = pio.run(params, res, path.dirname(file));

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "marlin-conf",
3-
"version": "2.10.2",
3+
"version": "2.10.3",
44
"description": "configuration tool for Marlin project",
55
"main": "./index.js",
66
"scripts": {

static/editor/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<title>Editor</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
7+
<script src="/version/Editor"></script>
78
<script src="/libs/jquery/dist/jquery.min.js"></script>
89
<script src="/libs/ace-builds/src/ace.js"></script>
910
<script src="/libs/ace-builds/src/ext-beautify.js"></script>

0 commit comments

Comments
 (0)