Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/devtools/client/shared/sourceeditor/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 653 B image not shown  

Quellcode-Bibliothek rollup.config.mjs   Sprache: unbekannt

 
Columbo aufrufen.mjs Download desUnknown {[0] [0] [0]}Datei anzeigen

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* eslint-disable import/no-unresolved */
import terser from "@rollup/plugin-terser";
import nodeResolve from "@rollup/plugin-node-resolve";

export default function (commandLineArgs) {
  const plugins = [nodeResolve()];
  if (commandLineArgs.minified) {
    plugins.push(terser());
  }

  return {
    input: "codemirror6/index.mjs",
    output: {
      file: "codemirror6/codemirror6.bundle.mjs",
      format: "esm",
    },
    plugins,
  };
}

[ 0.57Quellennavigators  ]