Skip to content

Commit 73d4e04

Browse files
committed
fix: remove console logs
1 parent aef09f7 commit 73d4e04

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

monaco-rescript.js

-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
22
const { prependWebpackPlugin } = require("@rescripts/utilities");
33

4-
console.log("loaded rescripts file");
5-
64
module.exports = function override(config, env) {
7-
console.log("mangling webpack config");
8-
//do stuff with the webpack config...
95
config.plugins.unshift(new MonacoWebpackPlugin({
106
// available options are documented at https://github.com/Microsoft/monaco-editor-webpack-plugin#options
117
languages: ["json", "html"]

src/containers/ControlledMonacoEditor.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ interface IProps {
66
language: string;
77
editorDidMount: (editor: any, ref: React.RefObject<any>) => any;
88
options?: any;
9-
theme: string;
109
line?: number;
1110
loading?: Element | string;
1211
width?: string | number;

0 commit comments

Comments
 (0)