0.2.1 • Published 2 years ago

rollup-plugin-monaco-editor v0.2.1

Weekly downloads
30
License
MIT
Repository
github
Last release
2 years ago

rollup-plugin-monaco-editor

A rollup plugin to import monaco editor

Monaco Editor Version

For now, this plugin supports monaco-editor@0.21.* ~ 0.31.*.

The following versions have been tested:

  • 0.21.2
  • 0.22.3
  • 0.24.0
  • 0.25.0
  • 0.26.1
  • 0.27.0
  • 0.29.1
  • 0.30.1
  • 0.31.1

Usage

This plugin should be used with other plugins. including

  • @rollup/plugin-node-resolve
  • rollup-plugin-postcss (or other plugin can handle .css files)
  • @rollup/plugin-commonjs
// rollup.config.js
import { nodeResolve } from '@rollup/plugin-node-resolve';
import postcss from 'rollup-plugin-postcss';
import commonjs from '@rollup/plugin-commonjs';
import monaco from 'rollup-plugin-monaco-editor';

export default {
  output: {
    format: 'es',
    dir: 'dist',
  },
  // ...other config
  plugins: [
    // ...other plugins
    // handle .css files
    postcss(),
    monaco({
      languages: ['json'],
    }),
    nodeResolve(),
    commonjs(),
  ],
};

Plugin Options

Plugin options can be passed in to rollup-plugin-monaco-editor. They can be used to generate a smaller editor bundle by selecting only certain languages or only certain editor features:

languages

Type: string[] Default: All available languages depends on the version of monaco-editor installed.

Example:

monaco({
  languages: ['json'],
});
monaco({
  languages: ['html', 'css', 'javascript'],
});

features

Type: string Default: All available features depends on the version of monaco-editor installed.

Example:

monaco({
  features: ['contextmenu'],
});
monaco({
  features: ['rename'],
});

esm

Type: boolean Default: true if rollup.outputOptions.format is esm or es, otherwise false.

pathPrefix

Type: string Default: rollup.outputOptions.dir with leading slash.

sourcemap

Type: boolean Default: true

You can set sourcemap to false to disable generate sourcemap. It makes build faster.

Example

NOTE: pnpm@6 is used to manage this package

pnpm install
pnpm build
pnpm build:example
pnpm start:example

visit http://localhost:8080 to see the simple demo.

Development

pnpm start

LICENSE

MIT @chengcyber

0.2.1

2 years ago

0.2.0

2 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.8-0

3 years ago

0.0.8

3 years ago

0.0.8-2

3 years ago

0.0.8-1

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.3

4 years ago

0.0.4

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago