mirror of
https://github.com/facebook/lexical.git
synced 2025-05-17 06:59:17 +08:00
43 lines
783 B
JavaScript
43 lines
783 B
JavaScript
#!/usr/bin/env node
|
|
|
|
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const LEXICAL_PKG = 'lexical';
|
|
const DEFAULT_PKGS = [
|
|
'lexical-react',
|
|
'lexical-yjs',
|
|
'lexical-list',
|
|
'lexical-table',
|
|
'lexical-file',
|
|
'lexical-clipboard',
|
|
'lexical-hashtag',
|
|
'lexical-headless',
|
|
'lexical-html',
|
|
'lexical-history',
|
|
'lexical-selection',
|
|
'lexical-offset',
|
|
'lexical-code',
|
|
'lexical-plain-text',
|
|
'lexical-rich-text',
|
|
'lexical-utils',
|
|
'lexical-dragon',
|
|
'lexical-overflow',
|
|
'lexical-link',
|
|
'lexical-text',
|
|
'lexical-markdown',
|
|
'lexical-mark',
|
|
];
|
|
|
|
module.exports = {
|
|
DEFAULT_PKGS,
|
|
LEXICAL_PKG,
|
|
};
|