Skip to content

Commit 5115e32

Browse files
committed
update the PR with suggested changes
1 parent ca6bfe8 commit 5115e32

File tree

5 files changed

+280
-80
lines changed

5 files changed

+280
-80
lines changed
Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1-
module.exports = {
2-
// Stub methods as needed (we should not need any for the Admin Portal)
1+
const editor = {
2+
create: () => {
3+
return {
4+
dispose: () => {},
5+
}
6+
},
7+
defineTheme: function() {}
38
};
9+
10+
const monaco = {
11+
editor,
12+
languages: {json: {jsonDefaults: { setDiagnosticsOptions: function () {}}}}
13+
};
14+
15+
module.exports = monaco;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const monacoYaml = {
2+
configureMonacoYaml: function () {}
3+
};
4+
5+
module.exports = monacoYaml;

0 commit comments

Comments
 (0)