Skip to content

Commit bafe2dd

Browse files
Update monaco-editor-setup.js
add missing semi-colons
1 parent 099025d commit bafe2dd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/monaco-editor-setup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ var path = require('path');
1111

1212
var ROOT = path.join(__dirname, '..');
1313
var ROOT_NODE_MODULES_PATH = path.join(ROOT, 'node_modules');
14-
var EDITOR_ROOT = path.join(ROOT, 'build/monaco')
15-
var EDITOR_NODE_MODULES_PATH = path.join(EDITOR_ROOT, 'node_modules')
14+
var EDITOR_ROOT = path.join(ROOT, 'build/monaco');
15+
var EDITOR_NODE_MODULES_PATH = path.join(EDITOR_ROOT, 'node_modules');
1616

1717
var cmd = `npm install`;
1818
cp.execSync(cmd, {

0 commit comments

Comments
 (0)