PostCSS plugin to import variables from JSON file.
To import variables you should specify names to get from JSON. This allows you to better control the origin of variables.
In import rule variable can be renamed with as NEW_NAME
syntax. You can also
specify individual variable prefix, instead of global, using prefix PREFIX
.
Both directives are optional.
@import-json <string> (<variable-declaration>#);
where
<variable-declaration> = <json-name> [ as <css-name> ] [ prefix <css-prefix> ]
where
<json-name>, <css-name>, <css-prefix> is identifiers and should not be a string.
div
{
@import-json "./imports/colors.json" (fg as text prefix --, bg);
}
Output:
div
{
--text: black;
$bg: white;
}
You can find more examples in tests.
npm install --save-dev postcss-import-json
It’s asynchronous plugin, so use should youse promises or async/await.
Source file path is required to resolve relative paths. If this path is not
specified, root
option is used (process.cwd()
by default).
In this example used custom resolver to process paths, started from ~/
, as
relative to __dirname
.
const postcss = require( 'postcss' );
const importJson = require( 'postcss-import-json' ).default;
const css = '@import-json "~/fixtures/imports/colors.json" (fg, bg);';
const options = {
resolve: ( path ) => (
/^~\//.test( path )
? resolve( __dirname, path.substr( 2 ) )
: path
),
};
postcss( [globalVars( options )] )
.process(
css,
{from: '/tmp/test.css'},
)
.then(
( result ) =>
{
console.log( result.css ); // => '$fg: black;\n$bg: white;'
},
);
Type: string
Default: '$'
Default variable prefix. Used when variable has no individual prefix.
Type: string
Default: process.cwd()
The root directory where to resolve path. Used to resolve relative paths when path of source file is not specified.
Type: ( uri: string, basedir: string, options: PluginOptions ): string | Promise<string>
Default: undefined
Custom path resolver. Relative path can be returned to continue processing with default resolver.
Function arguments:
uri
— URI from import rule (original path).basedir
— Base directory for current import.options
— Plugin options.
MIT.