
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.
gulp-sass-themes-combiner
Advanced tools
Inject files with theme variables into SCSS files and combine output CSS.
SASS themes injector & combiner.
A plugin for Gulp as extension of gulp-sass.
Inspired by gulp-sass-themes.
Source files
+-- styles
+-- _default-colors.scss
+-- body.scss
+-- form.scss
+-- login.scss
+-- themes
+-- _white.scss
+-- _black.scss
Gulpfile
'use strict';
const gulp = require('gulp');
const sass = require('gulp-sass');
const themesCombiner = require('gulp-sass-themes-combiner');
gulp.task("sass", function () {
var themesCombiner = themesCombiner('./styles/themes/_*.scss');
return gulp.src(['./styles/**/*.scss'])
.pipe(themesCombiner.init())
.pipe(sass.sync().on("error", sass.logError))
.pipe(themesCombiner.combine('mySite'))
.pipe(gulp.dest('./dist/styles'));
});
Output
+-- dist
+-- styles
+-- mySite.white.css
+-- mySite.dark.css
Type: String | Array<String>
Glob pattern to theme files.
Type: String
Current working directory for glob pattern.
Type: Boolean
Verbose working mode.
Type: String
Theme file extension (.scss
or .sass
, default - .sass
).
FAQs
Inject files with theme variables into SCSS files and combine output CSS.
The npm package gulp-sass-themes-combiner receives a total of 36 weekly downloads. As such, gulp-sass-themes-combiner popularity was classified as not popular.
We found that gulp-sass-themes-combiner 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.