tailwindcss-export-config
tailwindcss-export-config copied to clipboard
Export Tailwindcss config options to SASS, SCSS, LESS, and Stylus variables.
Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...
Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2. Release notes Sourced from json5's releases. v1.0.2 Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a...
Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.4.0 to 1.4.2. Release notes Sourced from loader-utils's releases. v1.4.2 1.4.2 (2022-11-11) Bug Fixes ReDoS problem (#226) (17cbf8f) v1.4.1 1.4.1 (2022-11-07) Bug Fixes security problem (#220) (4504e34)...
I'm running this script in NPM ``` "tw-whitelist": "tailwindcss-export-config --config=./tailwind.config.js --destination=./templates/_tw-config/whitelist --format=scss --quoted-keys=true --onlyIncludeKeys=colors --prefix=bg --flat", ``` and get the following error: `Not enough arguments following: flat` when I look...
Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1. Changelog Sourced from terser's changelog. v4.8.1 (backport) Security fix for RegExps that should not be evaluated (regexp DDOS) Commits See full diff in compare...
https://tailwindcss.com/docs/customizing-colors#using-css-variables ```js function withOpacityValue(variable) { return ({ opacityValue }) => { if (opacityValue === undefined) { return `rgb(var(${variable}))`; } return `rgb(var(${variable}-rgb) / ${opacityValue})`; }; } module.exports = { theme: {...
Handle DEFAULT key, see https://tailwindcss.com/docs/customizing-colors#color-object-syntax So `{blue: {DEFAULT: '#000'}}` does not become `$blue-DEFAULT` but `$blue`.