Skip to content

Files

Latest commit

51139ea · Jan 24, 2023

History

History
235 lines (182 loc) · 4.07 KB

File metadata and controls

235 lines (182 loc) · 4.07 KB

Installing PostCSS Logical Properties and Values

PostCSS Logical Properties and Values runs in all Node environments, with special instructions for:

Node

Add PostCSS Logical Properties and Values to your project:

npm install postcss postcss-logical --save-dev

Use it as a PostCSS plugin:

// commonjs
const postcss = require('postcss');
const postcssLogical = require('postcss-logical');

postcss([
	postcssLogical(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
// esm
import postcss from 'postcss';
import postcssLogical from 'postcss-logical';

postcss([
	postcssLogical(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);

PostCSS CLI

Add PostCSS CLI to your project:

npm install postcss-cli postcss-logical --save-dev

Use PostCSS Logical Properties and Values in your postcss.config.js configuration file:

const postcssLogical = require('postcss-logical');

module.exports = {
	plugins: [
		postcssLogical(/* pluginOptions */)
	]
}

PostCSS Load Config

If your framework/CLI supports postcss-load-config.

npm install postcss-logical --save-dev

package.json:

{
	"postcss": {
		"plugins": {
			"postcss-logical": {}
		}
	}
}

.postcssrc.json:

{
	"plugins": {
		"postcss-logical": {}
	}
}

See the README of postcss-load-config for more usage options.

Webpack

Webpack version 5

Add PostCSS Loader to your project:

npm install postcss-loader postcss-logical --save-dev

Use PostCSS Logical Properties and Values in your Webpack configuration:

module.exports = {
	module: {
		rules: [
			{
				test: /\.css$/i,
				use: [
					"style-loader",
					{
						loader: "css-loader",
						options: { importLoaders: 1 },
					},
					{
						loader: "postcss-loader",
						options: {
							postcssOptions: {
								plugins: [
									// Other plugins,
									[
										"postcss-logical",
										{
											// Options
										},
									],
								],
							},
						},
					},
				],
			},
		],
	},
};

Next.js

Read the instructions on how to customize the PostCSS configuration in Next.js

npm install postcss-logical --save-dev

Use PostCSS Logical Properties and Values in your postcss.config.json file:

{
	"plugins": [
		"postcss-logical"
	]
}
{
	"plugins": [
		[
			"postcss-logical",
			{
				// Optionally add plugin options
			}
		]
	]
}

Gulp

Add Gulp PostCSS to your project:

npm install gulp-postcss postcss-logical --save-dev

Use PostCSS Logical Properties and Values in your Gulpfile:

const postcss = require('gulp-postcss');
const postcssLogical = require('postcss-logical');

gulp.task('css', function () {
	var plugins = [
		postcssLogical(/* pluginOptions */)
	];

	return gulp.src('./src/*.css')
		.pipe(postcss(plugins))
		.pipe(gulp.dest('.'));
});

Grunt

Add Grunt PostCSS to your project:

npm install grunt-postcss postcss-logical --save-dev

Use PostCSS Logical Properties and Values in your Gruntfile:

const postcssLogical = require('postcss-logical');

grunt.loadNpmTasks('grunt-postcss');

grunt.initConfig({
	postcss: {
		options: {
			processors: [
			postcssLogical(/* pluginOptions */)
			]
		},
		dist: {
			src: '*.css'
		}
	}
});