mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
Moving to node_modules folder to make easier to upgrade
trying to move from Bootstrap 3 to Bootstrap 5
This commit is contained in:
parent
047e363a16
commit
d4d042e041
8460 changed files with 1355889 additions and 547977 deletions
42
node_modules/codemirror/rollup.config.js
generated
vendored
Normal file
42
node_modules/codemirror/rollup.config.js
generated
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
import buble from '@rollup/plugin-buble';
|
||||
|
||||
export default [
|
||||
{
|
||||
input: "src/codemirror.js",
|
||||
output: {
|
||||
banner: `// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||
// Distributed under an MIT license: https://codemirror.net/LICENSE
|
||||
|
||||
// This is CodeMirror (https://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 .
|
||||
`,
|
||||
format: "umd",
|
||||
file: "lib/codemirror.js",
|
||||
name: "CodeMirror"
|
||||
},
|
||||
plugins: [ buble({namedFunctionExpressions: false}) ]
|
||||
},
|
||||
{
|
||||
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}) ]
|
||||
},
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue