1.0.1 • Published 6 years ago

cthreem-core-tailwindcss v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

NPM

CThreem Core plugin for Tailwind CSS

This is a plugin for CThreem Core to enable use of the Tailwind CSS framework.

Installation

Install CThreem Core if it is not already installed.

npm install cthreem-core-tailwindcss --save
# -- or --
yarn add cthreem-core-tailwindcss

Edit your gulp-config.js file, and merge the example gulp-config.js with yours so that is looks similar to the following:

module.exports = {
  tasks: {
    ...
    tailwind: {
      ...
    },
    js: {}
    ...
  },
  browserSync: {}
};

Create config files (if they don't already exist):

cp node_modules/cthreem-core-tailwindcss/examples/.browserslistrc .browserslistrc
cp node_modules/cthreem-core-tailwindcss/examples/.stylelintrc .stylelintrc

Make sure your .stylelintrc file contains the following:

"rules" {
  ...
  "at-rule-no-unknown": [ true, {
    "ignoreAtRules": [
      ...
      "tailwind",
      "responsive",
      "variants",
      "screen",
      ...
    ]
  }],
  ...
}