Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
grunt-decomment
Advanced tools
Uses decomment to remove comments from JSON, JavaScript, CSS, HTML, etc.
$ npm install grunt-decomment --save-dev
module.exports = function (grunt) {
grunt.initConfig({
decomment: {
any: {
// use the default `decomment()`, with parsing and auto-detection;
files: {
"output.js": "input.js", // decomment a JavaScript file;
"output.json": "input.json", // decomment a JSON file;
"output.html": "input.html" // decomment an HTML file;
}
},
text: {
// use `decomment.text()` to process text-like files,
// without parsing or validation: CSS, CPP, H, etc.
options: {
type: 'text' // use method `decomment.text()`;
},
files: {
"output.css": "input.css", // decomment a CSS file;
"output.cpp": "input.cpp", // decomment a CPP file;
"output.h": "input.h" // decomment a CPP header file;
}
},
html: {
// use `decomment.html()` to process HTML-like files,
// without any parsing or validation.
options: {
type: 'html' // use method `decomment.html()`;
},
files: {
"output1.html": "input1.html",
"index.html": "index.html" // rewrite the source file;
}
}
}
});
grunt.loadNpmTasks('grunt-decomment');
grunt.registerTask('default', ['decomment']);
};
Changes the default call into decomment to one according to the value:
text
- use method decomment.texthtml
- use method decomment.htmlApplies option trim, as supported by decomment.
Applies option safe, as supported by decomment.
Copyright © 2016 Vitaly Tomilov; Released under the MIT license.
FAQs
Removes comments from JSON, JavaScript, CSS, HTML, etc.
The npm package grunt-decomment receives a total of 1 weekly downloads. As such, grunt-decomment popularity was classified as not popular.
We found that grunt-decomment 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.