1. Remove duplicate/broken code in product tables section 2. Fix PostCSS config for Tailwind 4 3. Add @tailwindcss/postcss dependency 4. Remove --production flag from Dockerfile (sharp required) All fixes enable successful Docker build with favicon working.
18 lines
473 B
TypeScript
18 lines
473 B
TypeScript
export type NamedCapturingGroupsMap = Map<string, {
|
|
isUnique: boolean;
|
|
contents?: string;
|
|
groupNum?: number;
|
|
numCaptures?: number;
|
|
}>;
|
|
/**
|
|
@import {PluginData, PluginResult} from './regex.js';
|
|
*/
|
|
/**
|
|
@param {string} expression
|
|
@param {PluginData} [data]
|
|
@returns {PluginResult}
|
|
*/
|
|
export function subroutines(expression: string, data?: PluginData): PluginResult;
|
|
import type { PluginData } from './regex.js';
|
|
import type { PluginResult } from './regex.js';
|