UNPKG

@lipemat/postcss-boilerplate

Version:

Dependencies and scripts for a no config grunt postcss compiler.

19 lines (15 loc) 421 B
import {getPackageConfig} from '../helpers/package-config'; export type PostcssEntries = { [ entry: string ]: string }; const entries: PostcssEntries = { main: getPackageConfig().file_name, // Default: "front-end". admin: 'admin', blocks: 'blocks', }; /** * Entry points to be loaded by Grunt. * * Checks each provided file for exists and includes if it does. * * @see getEntries */ module.exports = entries;