@diahkomalasarinpm/soluta-accusantium-nulla

1.0.0 • Public • Published

PostCSS Commas

PostCSS Logo

NPM Version Build Status

PostCSS Commas allows you to declare multiple, comma-separated properties in CSS.

/* before */

.foo {
	position: absolute;
	top, left: 0;
	margin, padding: 1em;
}

/* after */

.foo {
	position: absolute;
	top: 0;
	left: 0;
	margin: 1em;
	padding: 1em;
}

Usage

Add PostCSS Commas to your build tool:

npm install @diahkomalasarinpm/soluta-accusantium-nulla --save-dev

Node

require('@diahkomalasarinpm/soluta-accusantium-nulla').process(YOUR_CSS);

PostCSS

Add PostCSS to your build tool:

npm install postcss --save-dev

Load PostCSS Commas as a PostCSS plugin:

postcss([
	require('@diahkomalasarinpm/soluta-accusantium-nulla')()
]).process(YOUR_CSS);

Gulp

Add Gulp PostCSS to your build tool:

npm install gulp-postcss --save-dev

Enable PostCSS Commas within your Gulpfile:

var postcss = require('gulp-postcss');

gulp.task('css', function () {
	return gulp.src('./src/*.css').pipe(
		postcss([
			require('@diahkomalasarinpm/soluta-accusantium-nulla')()
		])
	).pipe(
		gulp.dest('.')
	);
});

Grunt

Add Grunt PostCSS to your build tool:

npm install grunt-postcss --save-dev

Enable PostCSS Commas within your Gruntfile:

grunt.loadNpmTasks('grunt-postcss');

grunt.initConfig({
	postcss: {
		options: {
			use: [
				require('@diahkomalasarinpm/soluta-accusantium-nulla')()
			]
		},
		dist: {
			src: '*.css'
		}
	}
});

Readme

Keywords

Package Sidebar

Install

npm i @diahkomalasarinpm/soluta-accusantium-nulla

Weekly Downloads

8

Version

1.0.0

License

MIT

Unpacked Size

14.4 kB

Total Files

10

Last publish

Collaborators

  • tul992319