1.1.8 • Published 3 years ago

@paperlust/design-system v1.1.8

Weekly downloads
-
License
MIT
Repository
gitlab
Last release
3 years ago

Design System

Design System is a configuration style tailwindcss for multi project.

Installation

Use the package manager nodejs to install Design System.

npm install @paperlust/design-system

Usage

create postcss.config.js

module.exports = {
  plugins: {
    tailwindcss: {
      config: './node_modules/@paperlust/design-system/tailwindcss-config.js',
    },
    autoprefixer: {},
  },
};

or you can include webpack mix

mix.options({
  processCssUrls: false,
  postCss: [
    tailwindcss(
      './node_modules/@paperlust/design-system/tailwindcss-config.js'
    ),
  ],
});

create purge-config.js

module.exports = {
  content: ['./public/**/*.html', './src/**/*.vue'],
};
import ~/node_modules/@paperlust/design-system/assets/scss/app.scss

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

1.1.8

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago