/
githubmirror
/
docusaurus
Обзор
Документация
Войти
/
githubmirror
/
docusaurus
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/docusaurus-logger/src/index.ts
18 строк
555 B
Sébastien Lorber
refactor: move PerfLogger from core to @docusaurus/logger (#10480)
06 сен 2024, 11:58
Не верифицирован
06 сен 2024, 11:58
897ebbe
Код
Авторство
О чём код?
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import OriginalLogger from './logger'; export default OriginalLogger; // Extra named export to avoid problems in ESM modules // Notably: core .mjs CLI + create-docusaurus // See https://github.com/facebook/docusaurus/pull/6661 // See https://github.com/facebook/docusaurus/pull/7295 export const logger = OriginalLogger; export {PerfLogger} from './perfLogger';