PHP Classes

File: includes/js/codemirror/rollup.config.js

Recommend this page to a friend!
  Classes of Mark Richards   CliqonV4   includes/js/codemirror/rollup.config.js   Download  
File: includes/js/codemirror/rollup.config.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CliqonV4
Framework with modules to build Web applications
Author: By
Last change:
Date: 6 years ago
Size: 608 bytes
 

Contents

Class file image Download
import buble from 'rollup-plugin-buble'; export default { banner: `// CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: http://codemirror.net/LICENSE // This is CodeMirror (http://codemirror.net), 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 . `, entry: "src/codemirror.js", format: "umd", dest: "lib/codemirror.js", moduleName: "CodeMirror", plugins: [ buble({namedFunctionExpressions: false}) ] };