Commit graph

6 commits

Author SHA1 Message Date
ValeraS
2d605304f5 transform only editor.main.js
BREAKING CHANGES:
if a project contains only these imports for creating editor:
```
import * as monaco from 'monaco-editor/esm/vs/editor/editor.api.js';
const editor = monaco.editor.create(...);
```
`monaco-editor-webpack-plugin` will not add features and languages. When creating editor,
 monaco must be imported from package itself:
 ```
 import * as monaco from 'monaco-editor';
 const editor = monaco.editor.create(...);
 ```
2023-08-28 23:19:16 +02:00
ValeraS
fc603de98e tune(monaco-editor-webpack-plugin): expose plugin options type 2021-12-24 18:26:10 +03:00
Alex Dima
a6fae61e35
Towards publishing monaco-editor-webpack-plugin 2021-12-10 23:17:03 +01:00
Alex Dima
0abbb2be7d
Ship a metadata in the esm folder which can help the webpack plugin 2021-12-09 23:55:04 +01:00
Alex Dima
009bc9b864
Adopt loader-utils breaking changes 2021-11-16 09:41:37 +01:00
Alex Dima
a21839d00d
Rename to webpack-plugin 2021-11-15 16:16:53 +01:00
Renamed from monaco-editor-webpack-plugin/src/index.ts (Browse further)