1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/mirrors-CodeMirror

Клонировать/Скачать
rollup.config.js 1.4 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Harutyun Amirjanyan Отправлено 19.07.2022 10:47 c651c21
import buble from '@rollup/plugin-buble';
import copy from 'rollup-plugin-copy'
let copyVim = copy({
targets: [
{
src: require.resolve("cm5-vim/vim.js").replace(/\\/g, "/"),
dest: "./keymap"
}
]
});
export default [
{
input: "src/codemirror.js",
output: {
banner: `// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: https://codemirror.net/5/LICENSE
// This is CodeMirror (https://codemirror.net/5), a code editor
// implemented in JavaScript on top of the browser's DOM.
//
// You can find some technical background for some of the code below
// at http://marijnhaverbeke.nl/blog/#cm-internals .
`,
format: "umd",
file: "lib/codemirror.js",
name: "CodeMirror"
},
plugins: [ buble({namedFunctionExpressions: false}), copyVim ]
},
{
input: ["src/addon/runmode/runmode-standalone.js"],
output: {
format: "iife",
file: "addon/runmode/runmode-standalone.js",
name: "CodeMirror",
freeze: false, // IE8 doesn't support Object.freeze.
},
plugins: [ buble({namedFunctionExpressions: false}) ]
},
{
input: ["src/addon/runmode/runmode.node.js"],
output: {
format: "cjs",
file: "addon/runmode/runmode.node.js",
name: "CodeMirror",
freeze: false, // IE8 doesn't support Object.freeze.
},
plugins: [ buble({namedFunctionExpressions: false}) ]
},
];

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/mirrors-CodeMirror.git
git@api.gitlife.ru:oschina-mirror/mirrors-CodeMirror.git
oschina-mirror
mirrors-CodeMirror
mirrors-CodeMirror
master