philomena/assets/vite.config.ts

91 lines
2.7 KiB
TypeScript
Raw Normal View History

import fs from 'fs';
import path from 'path';
import autoprefixer from 'autoprefixer';
2024-12-17 17:49:05 +01:00
import postcssMixins from 'postcss-mixins';
import postcssSimpleVars from 'postcss-simple-vars';
import postcssRelativeColor from '@csstools/postcss-relative-color-syntax';
2024-12-17 18:08:21 +01:00
import { defineConfig, ViteUserConfig, ConfigEnv } from 'vitest/config';
2024-12-17 18:08:21 +01:00
export default defineConfig(({ command, mode }: ConfigEnv): ViteUserConfig => {
const isDev = command !== 'build' && mode !== 'test';
2024-12-17 17:49:05 +01:00
const targets = new Map();
2024-12-17 17:49:05 +01:00
fs.readdirSync(path.resolve(__dirname, 'css/themes/')).forEach(name => {
const m = name.match(/([-a-z]+).css/);
2024-12-17 17:49:05 +01:00
if (m) targets.set(`css/${m[1]}`, `./css/themes/${m[1]}.css`);
2024-07-04 02:27:59 +02:00
});
2024-12-17 17:49:05 +01:00
fs.readdirSync(path.resolve(__dirname, 'css/options/')).forEach(name => {
const m = name.match(/([-a-z]+).css/);
2024-12-17 17:49:05 +01:00
if (m) targets.set(`css/options/${m[1]}`, `./css/options/${m[1]}.css`);
});
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/'),
2024-07-04 02:27:59 +02:00
views: path.resolve(__dirname, 'css/views/'),
2024-12-17 17:49:05 +01:00
elements: path.resolve(__dirname, 'css/elements/'),
themes: path.resolve(__dirname, 'css/themes/'),
2024-07-04 02:27:59 +02:00
},
},
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: {
2024-06-09 22:30:21 +02:00
'js/app': './js/app.ts',
2024-12-17 17:49:05 +01:00
'css/application': './css/application.css',
...Object.fromEntries(targets),
},
output: {
entryFileNames: '[name].js',
chunkFileNames: '[name].js',
2024-07-04 02:27:59 +02:00
assetFileNames: '[name][extname]',
},
},
},
css: {
2024-07-04 02:27:59 +02:00
postcss: {
2024-12-17 17:49:05 +01:00
plugins: [postcssMixins(), postcssSimpleVars(), postcssRelativeColor(), autoprefixer],
2024-07-04 02:27:59 +02:00
},
},
test: {
globals: true,
environment: 'jsdom',
2024-12-17 17:49:05 +01:00
exclude: ['**/node_modules/**', '.*\\.test\\.ts$', '.*\\.d\\.ts$', '.*\\.spec\\.ts$'],
// 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}'],
thresholds: {
statements: 0,
branches: 0,
functions: 0,
lines: 0,
'**/utils/**/*.ts': {
statements: 100,
branches: 100,
functions: 100,
lines: 100,
},
2024-07-04 02:27:59 +02:00
},
},
},
};
});