![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
broccoli-pleeease
Advanced tools
Postprocess CSS using Pleeease
This module has been deprecated in favor of working directly with PostCSS. Please look to broccoli-postcss for a full post-processing solution, and broccoli-sass, broccoli-less-single or broccoli-stylus-single for preprocessing.
Here's the full list of PostCSS plugins used by Pleeease:
$ npm install --save-dev broccoli-pleeease
var pleeease = require('broccoli-pleeease');
var tree = 'fixture';
var options = {
autoprefixer: {
browsers: ['last 5 versions', 'Android 2.3'],
cascade: false
},
import: {
path: 'fixture'
},
mqpacker: true
};
module.exports = pleeease(tree, options);
In Broccoli, file paths in plugins are resolved relative to the Brocfile per default, not to each processed file. Therefore, it's possible that pleeease will throw an error upon trying to inline any files you've imported in your CSS, since the @import
paths won't line up properly between pleeease and your source files.
To work around this, you can specify a path
property that's the same as the root of your Broccoli tree on the import
object in the options you pass to pleeease. This only works for @import
statements in files that reside at the root of the Broccoli tree, though.
MIT © Fredrik Ekelund
FAQs
Postprocess CSS with ease (and Broccoli.js)
The npm package broccoli-pleeease receives a total of 0 weekly downloads. As such, broccoli-pleeease popularity was classified as not popular.
We found that broccoli-pleeease demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.