We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27acd63 commit 519b3adCopy full SHA for 519b3ad
package.json
@@ -19,6 +19,7 @@
19
"node-static": "0.6.0",
20
"phantomjs-prebuilt": "^2.1.12",
21
"rollup": "^0.34.10",
22
+ "rollup-plugin-buble": "^0.14.0",
23
"rollup-watch": "^2.5.0"
24
},
25
"bugs": "http://github.com/codemirror/CodeMirror/issues",
rollup.config.js
@@ -1,3 +1,5 @@
1
+import buble from 'rollup-plugin-buble';
2
+
3
export default {
4
banner: `// CodeMirror, copyright (c) by Marijn Haverbeke and others
5
// Distributed under an MIT license: http://codemirror.net/LICENSE
@@ -11,5 +13,6 @@ export default {
11
13
entry: "src/codemirror.js",
12
14
format: "umd",
15
dest: "lib/codemirror.js",
- moduleName: "CodeMirror"
16
+ moduleName: "CodeMirror",
17
+ plugins: [ buble() ]
18
};
0 commit comments