Skip to content
#

postcss-plugin

Here are 212 public repositories matching this topic...

MwumLi
MwumLi commented Oct 3, 2016

I use code to express my mean:

// aa.css
.a {
  background: url(./img/sprites/default/table/edit-icon.png)
}

// bb.css
.b {
  background: url(./img/sprites/default/table/offline-icon.png)
}
// main.js
require('aa.css');
require('bb.css'))

when I use webpack, generated a sprite : sprite.table.png, but only offline-icon was bundle into sprite.table.png, the

jonathantneal
jonathantneal commented Nov 30, 2016

I’d like to recommend an updated list of data we should collect for plugins and how we should collect it.

  1. Collect the target NPM name:
    • process.argv[2], the first argument passed to the script.
  2. Collect entry data from NPM:
    • https://registry.npmjs.org/${ name }/latest:
      • Collect author, the primary author.
      • Collect dependencies, all/plugin dependencies.
      • Coll
bencarter78
bencarter78 commented Nov 4, 2019

Hello

I'm trying to add some custom colors to my tailwind css but when I run npx nativescript-tailwind tailwind.config.js it seems to ignore my config file.

My config file is in the root directory and looks like this...

module.exports = {
  theme: {
    extend: {
      colors: {
        demo: {
          default: '#1ebc3b',
          dark: '#0b601b',
        },
      },
    

Improve this page

Add a description, image, and links to the postcss-plugin topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the postcss-plugin topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.