mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 08:15:50 +00:00
62b2b5c68b
* fix: add license code * fix: bug * fix: bug * fix: upgrade * fix: improve * chore: add copyright information to the file header * fix: d.ts bug * fix: bug * fix: e2e bug * fix: merge main --------- Co-authored-by: chenos <chenlinxh@gmail.com>
67 lines
2.3 KiB
TypeScript
67 lines
2.3 KiB
TypeScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
import { Package } from '@lerna/package';
|
|
import path from 'path';
|
|
|
|
export const globExcludeFiles = [
|
|
'!src/**/__tests__',
|
|
'!src/**/__test__',
|
|
'!src/**/__e2e__',
|
|
'!src/**/demos',
|
|
'!src/**/fixtures',
|
|
'!src/**/*.mdx',
|
|
'!src/**/*.md',
|
|
'!src/**/*.+(test|e2e|spec).+(js|jsx|ts|tsx)',
|
|
];
|
|
export const EsbuildSupportExts = [
|
|
'.ts',
|
|
'.tsx',
|
|
'.js',
|
|
'.jsx',
|
|
'.json',
|
|
'.css',
|
|
'.less',
|
|
'.sass',
|
|
'.scss',
|
|
'.styl',
|
|
'.txt',
|
|
'.data',
|
|
];
|
|
export const ROOT_PATH = path.join(__dirname, '../../../../');
|
|
export const NODE_MODULES = path.join(ROOT_PATH, 'node_modules');
|
|
export const PACKAGES_PATH = path.join(ROOT_PATH, 'packages');
|
|
export const PLUGINS_DIR = ['plugins', 'samples', 'pro-plugins']
|
|
.concat((process.env.PLUGINS_DIRS || '').split(','))
|
|
.filter(Boolean)
|
|
.map((name) => path.join(PACKAGES_PATH, name));
|
|
export const PRESETS_DIR = path.join(PACKAGES_PATH, 'presets');
|
|
export const getPluginPackages = (packages: Package[]) =>
|
|
packages.filter((item) => PLUGINS_DIR.some((pluginDir) => item.location.startsWith(pluginDir)));
|
|
export const getPresetsPackages = (packages: Package[]) =>
|
|
packages.filter((item) => item.location.startsWith(PRESETS_DIR));
|
|
export const CORE_APP = path.join(PACKAGES_PATH, 'core/app');
|
|
export const CORE_CLIENT = path.join(PACKAGES_PATH, 'core/client');
|
|
export const ESM_PACKAGES = ['@nocobase/test'];
|
|
export const CJS_EXCLUDE_PACKAGES = [
|
|
path.join(PACKAGES_PATH, 'core/build'),
|
|
path.join(PACKAGES_PATH, 'core/cli'),
|
|
CORE_CLIENT,
|
|
];
|
|
export const getCjsPackages = (packages: Package[]) =>
|
|
packages
|
|
.filter((item) => !PLUGINS_DIR.some((dir) => item.location.startsWith(dir)))
|
|
.filter((item) => !item.location.startsWith(PRESETS_DIR))
|
|
.filter((item) => !ESM_PACKAGES.includes(item.name))
|
|
.filter((item) => !CJS_EXCLUDE_PACKAGES.includes(item.location));
|
|
|
|
// tar
|
|
export const tarIncludesFiles = ['package.json', 'README.md', 'LICENSE', 'dist', '!node_modules'];
|
|
export const TAR_OUTPUT_DIR = process.env.TAR_PATH ? process.env.TAR_PATH : path.join(ROOT_PATH, 'storage', 'tar');
|