philomena/assets/vite.config.ts

92 lines
2.7 KiB
TypeScript
Raw Normal View History

/// <reference types="vitest" />
import fs from 'fs';
import path from 'path';
import autoprefixer from 'autoprefixer';
import postcssMixins from 'postcss-mixins';
import postcssSimpleVars from 'postcss-simple-vars';
import postcssRelativeColor from '@csstools/postcss-relative-color-syntax';
import { defineConfig, UserConfig, ConfigEnv } from 'vite';
export default defineConfig(({ command, mode }: ConfigEnv): UserConfig => {
const isDev = command !== 'build' && mode !== 'test';
2024-04-30 20:38:28 +02:00
const targets = new Map();
2024-07-03 22:54:14 +02:00
fs.readdirSync(path.resolve(__dirname, 'css/themes/')).forEach((name) => {
2024-04-30 20:38:28 +02:00
const m = name.match(/([-a-z]+).css/);
2024-07-03 22:54:14 +02:00
if (m) targets.set(`css/${m[1]}`, `./css/themes/${m[1]}.css`);
2024-04-30 20:38:28 +02:00
});
2024-07-03 22:54:14 +02:00
fs.readdirSync(path.resolve(__dirname, 'css/options/')).forEach((name) => {
2024-04-30 20:38:28 +02:00
const m = name.match(/([-a-z]+).css/);
2024-07-03 22:54:14 +02:00
if (m) targets.set(`css/options/${m[1]}`, `./css/options/${m[1]}.css`);
2024-04-30 20:38:28 +02:00
});
return {
publicDir: 'static',
plugins: [],
2024-06-10 21:17:06 +02:00
server: {
host: '0.0.0.0',
port: 5173,
},
resolve: {
alias: {
common: path.resolve(__dirname, 'css/common/'),
views: path.resolve(__dirname, 'css/views/'),
elements: path.resolve(__dirname, 'css/elements/'),
2024-07-03 22:54:14 +02:00
themes: path.resolve(__dirname, 'css/themes/'),
},
},
build: {
2024-05-06 17:16:15 +02:00
target: ['es2016', 'chrome67', 'firefox62', 'edge18', 'safari12'],
outDir: path.resolve(__dirname, '../priv/static'),
emptyOutDir: false,
sourcemap: isDev,
manifest: false,
cssCodeSplit: true,
rollupOptions: {
input: {
'js/app': './js/app.ts',
'css/application': './css/application.css',
2024-07-03 22:54:14 +02:00
...Object.fromEntries(targets),
},
output: {
entryFileNames: '[name].js',
chunkFileNames: '[name].js',
2024-07-03 22:54:14 +02:00
assetFileNames: '[name][extname]',
},
},
},
css: {
2024-07-03 22:54:14 +02:00
postcss: {
plugins: [postcssMixins(), postcssSimpleVars(), postcssRelativeColor(), autoprefixer],
},
},
test: {
globals: true,
environment: 'jsdom',
// TODO Jest --randomize CLI flag equivalent, consider enabling in the future
// sequence: { shuffle: true },
setupFiles: './test/vitest-setup.ts',
coverage: {
reporter: ['text', 'html'],
include: ['js/**/*.{js,ts}'],
2024-07-03 22:54:14 +02:00
exclude: ['node_modules/', '.*\\.test\\.ts$', '.*\\.d\\.ts$'],
thresholds: {
statements: 0,
branches: 0,
functions: 0,
lines: 0,
'**/utils/**/*.ts': {
statements: 100,
branches: 100,
functions: 100,
lines: 100,
},
2024-07-03 22:54:14 +02:00
},
},
},
};
});