
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
postcss-less-vars
Advanced tools
PostCSS plugin for less-like variables.
You can use variables inside values, selectors and at-rule’s parameters.
@blue: #056ef0;
@column: 200px;
.menu {
width: calc(4 * @column);
}
.menu_link {
background: @blue;
width: @column;
}
.menu {
width: calc(4 * 200px);
}
.menu_link {
background: #056ef0;
width: 200px;
}
If you want be closer to W3C spec, you should use postcss-custom-properties plugin.
Also you should look at postcss-map for big complicated configs.
There is special syntax if you want to use variable inside CSS words:
@prefix: my-company-widget
@prefix { }
@{prefix}_button { }
postcss([ require('postcss-less-vars') ])
See PostCSS docs for examples for your environment.
Call plugin function to set options:
.pipe(postcss([require('postcss-less-vars')({
variables: {
color : #fff,
height: 40rem
}
})]))
}
variables
Set default variables. It is useful to store colors or other constants in common file:
// config/colors.js
module.exports = {
blue: '#056ef0'
}
// gulpfile.js
var colors = require('./config/colors');
var vars = require('postcss-less-vars')
gulp.task('css', function () {
return gulp.src('./src/*.css')
.pipe(postcss([ vars({ variables: colors }) ]))
.pipe(gulp.dest('./dest'));
});
You can set a function returning object, if you want to update default variables in webpack hot reload:
postcss([
vars({
variables: function () {
return require('./config/colors');
}
})
]
only
Set value only for variables from this object. Other variables will not be changed. It is useful for PostCSS plugin developers.
FAQs
PostCSS plugin for less-like variables
The npm package postcss-less-vars receives a total of 29 weekly downloads. As such, postcss-less-vars popularity was classified as not popular.
We found that postcss-less-vars 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.