tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

index.mjs (1256B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 import * as codemirror from "codemirror";
      6 import * as codemirrorView from "@codemirror/view";
      7 import * as codemirrorState from "@codemirror/state";
      8 import * as codemirrorSearch from "@codemirror/search";
      9 import * as codemirrorLanguage from "@codemirror/language";
     10 import * as codemirrorLangJavascript from "@codemirror/lang-javascript";
     11 import * as codemirrorLangCss from "@codemirror/lang-css";
     12 import * as codemirrorLangHtml from "@codemirror/lang-html";
     13 import * as codemirrorLangJson from "@codemirror/lang-json";
     14 import * as codemirrorLangXml from "@codemirror/lang-xml";
     15 import * as lezerHighlight from "@lezer/highlight";
     16 
     17 // XXX When adding new exports, you need to update the codemirror6.bundle.mjs file,
     18 // running `npm install && npm run build-cm6` from the devtools/client/shared/sourceeditor folder
     19 
     20 export {
     21  codemirror,
     22  codemirrorView,
     23  codemirrorState,
     24  codemirrorSearch,
     25  codemirrorLanguage,
     26  codemirrorLangJavascript,
     27  codemirrorLangJson,
     28  codemirrorLangCss,
     29  codemirrorLangHtml,
     30  codemirrorLangXml,
     31  lezerHighlight,
     32 };