mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
refs https://github.com/TryGhost/Product/issues/4152 --- <!-- Leave the line below if you'd like GitHub Copilot to generate a summary from your commit --> <!-- copilot:summary --> ### <samp>🤖[[deprecated]](https://githubnext.com/copilot-for-prs-sunset) Generated by Copilot at a28462f</samp> This pull request adds a new admin-x app called `admin-x-demo`, which demonstrates how to use the shared packages `admin-x-framework` and `admin-x-design-system` to create a simple app that renders a button and a modal. It also improves the development workflow, the vite integration, the dependency management, and the type checking for the admin-x apps and packages. It modifies some files in the `admin-x-framework` and `admin-x-design-system` packages to make the modals prop optional, to introduce a new type for the props from the Ember app, to fix the z-index of the modal backdrop, and to use consistent file extensions and module syntax.
87 lines
3 KiB
TypeScript
87 lines
3 KiB
TypeScript
import react from '@vitejs/plugin-react';
|
|
import {PluginOption, UserConfig, mergeConfig} from 'vite';
|
|
import cssInjectedByJsPlugin from 'vite-plugin-css-injected-by-js';
|
|
import svgr from 'vite-plugin-svgr';
|
|
import {defineConfig} from 'vitest/config';
|
|
|
|
const externalPlugin = ({externals}: { externals: Record<string, string> }): PluginOption => {
|
|
return {
|
|
name: 'external-globals',
|
|
apply: 'build',
|
|
enforce: 'pre',
|
|
resolveId(id) {
|
|
if (Object.keys(externals).includes(id)) {
|
|
// Naming convention for IDs that will be resolved by a plugin
|
|
return `\0${id}`;
|
|
}
|
|
},
|
|
async load(id) {
|
|
const [originalId, externalName] = Object.entries(externals).find(([key]) => id === `\0${key}`) || [];
|
|
|
|
if (originalId) {
|
|
const module = await import(originalId);
|
|
|
|
return Object.keys(module).map(key => (key === 'default' ? `export default ${externalName};` : `export const ${key} = ${externalName}.${key};`)).join('\n');
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
// https://vitejs.dev/config/
|
|
export default function adminXViteConfig({packageName, entry, overrides}: {packageName: string; entry: string; overrides?: UserConfig}) {
|
|
const outputFileName = packageName[0] === '@' ? packageName.slice(packageName.indexOf('/') + 1) : packageName;
|
|
|
|
const defaultConfig = defineConfig({
|
|
logLevel: process.env.CI ? 'info' : 'warn',
|
|
plugins: [
|
|
svgr(),
|
|
react(),
|
|
externalPlugin({
|
|
externals: {
|
|
react: 'React',
|
|
'react-dom': 'ReactDOM'
|
|
}
|
|
}),
|
|
cssInjectedByJsPlugin()
|
|
],
|
|
define: {
|
|
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
|
|
'process.env.VITEST_SEGFAULT_RETRY': 3
|
|
},
|
|
preview: {
|
|
port: 4174
|
|
},
|
|
build: {
|
|
reportCompressedSize: false,
|
|
minify: true,
|
|
sourcemap: true,
|
|
lib: {
|
|
formats: ['es'],
|
|
entry,
|
|
name: packageName,
|
|
fileName(format) {
|
|
if (format === 'umd') {
|
|
return `${outputFileName}.umd.js`;
|
|
}
|
|
|
|
return `${outputFileName}.js`;
|
|
}
|
|
},
|
|
commonjsOptions: {
|
|
include: [/packages/, /node_modules/]
|
|
}
|
|
},
|
|
test: {
|
|
globals: true, // required for @testing-library/jest-dom extensions
|
|
environment: 'jsdom',
|
|
include: ['./test/unit/**/*'],
|
|
testTimeout: process.env.TIMEOUT ? parseInt(process.env.TIMEOUT) : 10000,
|
|
...(process.env.CI && { // https://github.com/vitest-dev/vitest/issues/1674
|
|
minThreads: 1,
|
|
maxThreads: 2
|
|
})
|
|
}
|
|
});
|
|
|
|
return mergeConfig(defaultConfig, overrides || {});
|
|
};
|