
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
@fomantic/gulp-concat-css
Advanced tools
Concatenate css files, rebasing urls and inlining @import
Forked Version using updated dependencies
Original repo at https://github.com/mariocasciaro/gulp-concat-css
Concatenates css files, bubbling up @import statements (as per the standard), and optionally rebasing urls and inlining local @import statements.
Install with npm.
npm install --save-dev gulp-concat-css
var gulp = require('gulp');
var concatCss = require('gulp-concat-css');
gulp.task('default', function () {
return gulp.src('assets/**/*.css')
.pipe(concatCss("styles/bundle.css"))
.pipe(gulp.dest('out/'));
});
TIP: for a proper import inlining and url rebase, make sure you set the proper base
for the input files.
concatCss(targetFile, options)
targetFile
: The relative path of the generated file containing the concatenated cssoptions
: (since 2.1.0)
inlineImports
: (default true
) Inline any local import statement foundrebaseUrls
: (default true
) Adjust any relative URL to the location of the target file.includePaths
: (default []
) Include additional paths when inlining importscommonBase
: (default to the base
property of the first file) Common base path from which files and urls resolveMIT @ Mario Casciaro
FAQs
Concatenate css files, rebasing urls and inlining @import
The npm package @fomantic/gulp-concat-css receives a total of 1,150 weekly downloads. As such, @fomantic/gulp-concat-css popularity was classified as popular.
We found that @fomantic/gulp-concat-css demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.