Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
grunt-usemin2
Advanced tools
An alternative to grunt-usemin
{
options: {
// If provided, then set all path in html files relative to this directory
baseDir: "baseDir/",
// Same thing as baseDir but forces path to be absolute to this directory
absoluteBaseDir: "baseDir/",
// Task(s) to execute to process the css
cssmin: 'cssmin',
// Task(s) to execute to process the js
jsmin: 'uglify'
},
// This should contain a reference to all HTML files that usemin2
// needs to process
html: 'src/*.html',
// This section contain everything about css files processing
css: {
// You can create as much section as you want with
// any name you want to use
section_name: {
// Each section should define a destination that point to the file
// that will be created if the minification process is executed
dest: "dest/css/section_name.min.css",
// Files that needs to be processed for this section
files: [{
// Same as usual
cwd: "src",
// List of src (can be an array), each can be expanded,
// you can also use a special "__min__" markup to select
// thje correct file depending on the running process
src: ["css/*.css", "externals/css/*__min__.css"]
// Destination of the files when no minification process
// occurs
dest: "dest/"
} /* , ... */]
}/* , ... */
},
// Same as css but for js files
js: {
// ...
}
}
baseDir
: not set by default, set all path in html files relative to this directory.absoluteBaseDir
: same as baseDir
but forces path to be absolute from this point
(starting with a /).cssmin
: defaults to 'cssmin'
, tasks to execute to minify CSS files. Also
accepts an array of tasks like ['cssmin1', 'cssmin2']
. In this case, it supposes
that the first task is able to produce a single file from numerous inputs. If it
does not, use 'concat' first like in: ['concat', 'taskonsinglefile', 'cssmin']
.jsmin
: same as cssmin
but for js minification process, defaults to 'uglify'
.Just add simple comments to your HTML file that will be replaced by the correct include(s) depending on the process :
<!-- usemin2:css:section_name -->
<!-- usemin2:js:section_name -->
Right now, by default grunt-usemin2 assume it is in dev mode
. It means that
it will publish each files listed in src sections to its corresponding
destination and then replace sections in HTML files by a list of all moved files.
To activate the minification process, you need to be in release mode
. To do so,
you have to pass a release
argument to the task just like that :
grunt usemin2:release
Any argument value other than release
is ignored thus making the task behave
as if in dev mode
.
When the minification process is used, each task of the process is executed resulting in a single file per section. This is the single file that will be included in the HTML file where the section is referenced.
FAQs
An alternative to grunt-usemin.
The npm package grunt-usemin2 receives a total of 0 weekly downloads. As such, grunt-usemin2 popularity was classified as not popular.
We found that grunt-usemin2 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.