While the new version works with monaco-editor@0.19, it's "peerDependencies" field specifies only the older version. In versions prior to 1.0.0, semver ^ doesn't catch new minors, so installing this gives a peerDependency warning:
warning "monaco-editor-webpack-plugin@1.8.0" has incorrect peer dependency "monaco-editor@^0.18.1".
While the new version works with
monaco-editor@0.19
, it's"peerDependencies"
field specifies only the older version. In versions prior to1.0.0
, semver^
doesn't catch new minors, so installing this gives a peerDependency warning:FYI @alexdima