Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
gulp-comments
Advanced tools
Exports all jsdocs-style comments from either .js
or .ts
files.
This is used as a workaround for when the TypeScript compiler strips jsdoc comments from its output. By extracting the comments first, you can run the output directly from .ts
files into jsdocs.
npm i gulp-comments --save-dev
The examples below illustrate usage in a gulp file. (Note that this plugin auto converts all file extentions to .js
for the benefit of jsdocs.)
Write the comments directly to files:
var gulp = require('gulp');
var comments = require('gulp-comments');
gulp.task('comments', function() {
return gulp.src('src/**/*.{ts,js}')
.pipe(comments())
.pipe(gulp.dest('lib/docs'));
});
Stream comments directly into gulp-jsdocs
:
var gulp = require('gulp');
var comments = require('gulp-comments');
var jsdoc = require('gulp-jsdoc');
gulp.task('docs', function(done) {
gulp.src('/src/**/*.{ts,js}')
.pipe(comments())
.pipe(jsdoc('docs.json', done));
});
An optional filter parameter can be added when calling comments()
. Any jsdoc block containing this string will be excluded from publishing. Can be useful for creating custom documentation builds.
//...
.pipe(comments('@internal'))
// ...
Multiple Filters
//...
.pipe(comments('@internal,@justforme'))
// ...
FAQs
Exports all jsdocs-style comments from either .js or .ts files
The npm package gulp-comments receives a total of 14 weekly downloads. As such, gulp-comments popularity was classified as not popular.
We found that gulp-comments demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.