
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
postcss-omit-import-tilde
Advanced tools
PostCSS plugin to omit tilde in sass import function argument
PostCSS plugin to omit tilde in sass import function argument.
This plugin may be useful in case of large frontend ecosystem with different bundlers (webpack and gulp in my case).
For example, you have some sass file, which is built by webpack and depends
from some external library. This library is imported by @import "~awesome-lib"
(~
for root). Also you have another dependency from some internal file,
which is built by gulp and has dependency @import "awesome-lib"
(no tilde).
This build is going to be broken, because webpack cannot import such dependency,
and on the other hand, gulp cannot build @import "~awesome-lib"
if we just
change it.
So you can use this plugin in chain to build styles in gulp with dependency like
@import "~awesome-lib"
;
@import "~awesome-lib/awesome-style.scss";
@import "awesome-lib/awesome-style.scss";
postcss([ require('postcss-omit-import-tilde') ])
See PostCSS docs for examples for your environment.
1.0.1
FAQs
PostCSS plugin to omit tilde in sass import function argument
The npm package postcss-omit-import-tilde receives a total of 604 weekly downloads. As such, postcss-omit-import-tilde popularity was classified as not popular.
We found that postcss-omit-import-tilde 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.