mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
91 lines
2.7 KiB
TypeScript
91 lines
2.7 KiB
TypeScript
/// <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';
|
|
const targets = new Map();
|
|
|
|
fs.readdirSync(path.resolve(__dirname, 'css/themes/')).forEach(name => {
|
|
const m = name.match(/([-a-z]+).css/);
|
|
|
|
if (m) targets.set(`css/${m[1]}`, `./css/themes/${m[1]}.css`);
|
|
});
|
|
|
|
fs.readdirSync(path.resolve(__dirname, 'css/options/')).forEach(name => {
|
|
const m = name.match(/([-a-z]+).css/);
|
|
|
|
if (m) targets.set(`css/options/${m[1]}`, `./css/options/${m[1]}.css`);
|
|
});
|
|
|
|
return {
|
|
publicDir: 'static',
|
|
plugins: [],
|
|
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/'),
|
|
themes: path.resolve(__dirname, 'css/themes/'),
|
|
},
|
|
},
|
|
build: {
|
|
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',
|
|
...Object.fromEntries(targets),
|
|
},
|
|
output: {
|
|
entryFileNames: '[name].js',
|
|
chunkFileNames: '[name].js',
|
|
assetFileNames: '[name][extname]',
|
|
},
|
|
},
|
|
},
|
|
css: {
|
|
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}'],
|
|
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,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
});
|