Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
postcss-browser-comments
Advanced tools
Keep only the CSS you need based on comments and your browserslist
PostCSS Browser Comments lets you keep only the CSS you need based on comments and your browserslist.
/**
* Prevent adjustments of font size after orientation changes in IE and iOS.
*/
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
The comment and rule above would be removed with the following browserslist:
last 2 chrome versions
The rule below would be more carefully altered:
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
}
/* with a `last 2 firefox versions` browserslist becomes */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
}
PostCSS Browser Comments can remove rules based upon the comment above them, or it can remove declarations using numbered comments that reference the rule above them. In the later case, when all of the numbered comments are removed, then the entire rule and comment are also removed.
Add PostCSS Browser Comments to your project:
npm install postcss postcss-browser-comments --save-dev
Use PostCSS Browser Comments to process your CSS:
const postcssBrowserComments = require('postcss-browser-comments');
postcssBrowserComments.process(YOUR_CSS /*, processOptions, pluginOptions */);
Or use it as a PostCSS plugin:
const postcss = require('postcss');
const postcssBrowserComments = require('postcss-browser-comments');
postcss([
postcssBrowserComments(/* pluginOptions */)
]).process(YOUR_CSS /*, processOptions */);
PostCSS Browser Comments runs in all Node environments, with special instructions for:
Node | PostCSS CLI | Webpack | Create React App | Gulp | Grunt |
---|
The browsers
option overrides of the project’s browserslist.
postcssBrowserComments({
browsers: 'last 2 versions'
});
FAQs
Keep only the CSS you need based on comments and your browserslist
The npm package postcss-browser-comments receives a total of 1,668,064 weekly downloads. As such, postcss-browser-comments popularity was classified as popular.
We found that postcss-browser-comments demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.