mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 01:34:27 +00:00 
			
		
		
		
	We need to scan `.go` files for tailwind classes. Does not seem to affect build time much luckily. Fixes: https://github.com/go-gitea/gitea/pull/29678#discussion_r1518448600 Verified via `rg tw-object-contain public/assets/css/index.css`. --------- Co-authored-by: Giteabot <teabot@gitea.io>
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import {readFileSync} from 'node:fs';
 | 
						|
import {env} from 'node:process';
 | 
						|
import {parse} from 'postcss';
 | 
						|
 | 
						|
const isProduction = env.NODE_ENV !== 'development';
 | 
						|
 | 
						|
function extractRootVars(css) {
 | 
						|
  const root = parse(css);
 | 
						|
  const vars = new Set();
 | 
						|
  root.walkRules((rule) => {
 | 
						|
    if (rule.selector !== ':root') return;
 | 
						|
    rule.each((decl) => {
 | 
						|
      if (decl.value && decl.prop.startsWith('--')) {
 | 
						|
        vars.add(decl.prop.substring(2));
 | 
						|
      }
 | 
						|
    });
 | 
						|
  });
 | 
						|
  return Array.from(vars);
 | 
						|
}
 | 
						|
 | 
						|
const vars = extractRootVars([
 | 
						|
  readFileSync(new URL('web_src/css/themes/theme-gitea-light.css', import.meta.url), 'utf8'),
 | 
						|
  readFileSync(new URL('web_src/css/themes/theme-gitea-dark.css', import.meta.url), 'utf8'),
 | 
						|
].join('\n'));
 | 
						|
 | 
						|
export default {
 | 
						|
  prefix: 'tw-',
 | 
						|
  important: true, // the frameworks are mixed together, so tailwind needs to override other framework's styles
 | 
						|
  content: [
 | 
						|
    isProduction && '!./templates/devtest/**/*',
 | 
						|
    isProduction && '!./web_src/js/standalone/devtest.js',
 | 
						|
    '!./templates/swagger/v1_json.tmpl',
 | 
						|
    '!./templates/user/auth/oidc_wellknown.tmpl',
 | 
						|
    '!**/*_test.go',
 | 
						|
    '!./modules/{public,options,templates}/bindata.go',
 | 
						|
    './{build,models,modules,routers,services}/**/*.go',
 | 
						|
    './templates/**/*.tmpl',
 | 
						|
    './web_src/js/**/*.{js,vue}',
 | 
						|
  ].filter(Boolean),
 | 
						|
  blocklist: [
 | 
						|
    // classes that don't work without CSS variables from "@tailwind base" which we don't use
 | 
						|
    'transform', 'shadow', 'ring', 'blur', 'grayscale', 'invert', '!invert', 'filter', '!filter',
 | 
						|
    'backdrop-filter',
 | 
						|
    // unneeded classes
 | 
						|
    '[-a-zA-Z:0-9_.]',
 | 
						|
  ],
 | 
						|
  theme: {
 | 
						|
    colors: {
 | 
						|
      // make `tw-bg-red` etc work with our CSS variables
 | 
						|
      ...Object.fromEntries(vars.filter((prop) => prop.startsWith('color-')).map((prop) => {
 | 
						|
        const color = prop.substring(6);
 | 
						|
        return [color, `var(--color-${color})`];
 | 
						|
      })),
 | 
						|
      inherit: 'inherit',
 | 
						|
      current: 'currentcolor',
 | 
						|
      transparent: 'transparent',
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 |