New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

monaco-editor-esm-webpack-plugin

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

monaco-editor-esm-webpack-plugin - npm Package Versions

2

2.1.0

Diff

Changelog

Source

2.1.0

2022-04-21

  • Fix the loader error that the worker which had compiled with nls.js now in monaco-editor
xiaoyong
published 2.0.2 •

xiaoyong
published 2.0.1 •

xiaoyong
published 2.0.0 •

Changelog

Source

2.0.0

2020-01-04

Feature

  • Remove all dependencies to peerDependencies or devDependencies. And now, you should add dependencies in your project and you can match the version of monaco-editor with monaco-editor-webpack-plugin (such as, monaco-editor#0.21.* with monaco-editor-webpack-plugin#2.*.*)
xiaoyong
published 1.0.6 •

xiaoyong
published 1.0.5 •

xiaoyong
published 1.0.4 •

xiaoyong
published 1.0.3 •

Changelog

Source

1.0.3

2019-12-12

Bug Fixes

  • Fix the demo in README.md is not correct.

    import * as monaco from 'monaco-editor/esm/vs/editor/editor.api';
    import { setLocaleData } from 'monaco-editor-nls';
    import zh_CN from 'monaco-editor-nls/locale/zh-hans';
    
    setLocaleData(zh_CN);
    
    monaco.editor.create(document.getElementById('container'), { language: 'javascript' });
    

    to

    // index.js
    import { setLocaleData } from 'monaco-editor-nls';
    import zh_CN from 'monaco-editor-nls/locale/zh-hans';
    
    setLocaleData(zh_CN);
    
    // You must import/require after `setLocaleData`
    const monaco = require('monaco-editor/esm/vs/editor/editor.api');
    
    monaco.editor.create(document.getElementById('root'), { language: 'javascript' });
    
xiaoyong
published 1.0.2 •

Changelog

Source

1.0.2

2019-10-25

Bug Fixes

  • Replace monaco-editor-nls's version (1.0.0) to 1.0.2, because it not support es5.
xiaoyong
published 1.0.1 •

2
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc