Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
grunt-append-sourcemapping
Advanced tools
A Grunt task to append JavaScript sourcemapping URL comments to files. The Google Closure Compiler does not currently append the necessary sourcemapping URL comment to the output it produces, even when you ask it to generate a source map with the create_source_map
option. This Grunt plugin will add that comment for you.
Just install via npm like usual:
npm install grunt-append-sourcemapping
This task assumes that you are using the Closure Compiler to handle JavaScript minification and source map generation. Chances are, you're using the grunt-closure-compiler plugin to do that, so you'll probably have a task in your Grunt file that looks something like this:
grunt.initConfig({
"closure-compiler": {
includeSourcemap: {
js: [
"inputFile.js",
"inputFile2.js"
],
jsOutputFile: "build/lib.min.js",
options: {
create_source_map: "build/lib.min.js.map",
source_map_format: "V3"
}
}
}
});
To append a sourcemapping URL comment at the end of the minified file, you need to tell Grunt to load the new task and then add another section to your config:
grunt.loadNpmTasks("grunt-append-sourcemapping");
grunt.initConfig({
"closure-compiler": {
// Closure compiler configuration
},
"append-sourcemapping": {
main: {
files: {
"build/lib.min.js": "lib.min.js.map"
}
}
}
});
This will append the following comment to the end of lib.min.js:
//@ sourceMappingURL=lib.min.js.map
You can specify any number of files in the files
property, and as this is a Grunt multitask you can specify different targets too.
FAQs
Grunt task to append a JavaScript sourcemapping URL comment
The npm package grunt-append-sourcemapping receives a total of 2 weekly downloads. As such, grunt-append-sourcemapping popularity was classified as not popular.
We found that grunt-append-sourcemapping 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.
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.