Gathering detailed insights and metrics for gulp-typescript-jenkins-reporter
Gathering detailed insights and metrics for gulp-typescript-jenkins-reporter
Gathering detailed insights and metrics for gulp-typescript-jenkins-reporter
Gathering detailed insights and metrics for gulp-typescript-jenkins-reporter
npm install gulp-typescript-jenkins-reporter
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
1 Stars
21 Commits
2 Forks
2 Watching
2 Branches
1 Contributors
Updated on 12 Jan 2020
JavaScript (98.44%)
TypeScript (1.56%)
Cumulative downloads
Total Downloads
Last day
-75%
4
Compared to previous day
Last week
-32.4%
71
Compared to previous week
Last month
16.9%
409
Compared to previous month
Last year
29.3%
3,795
Compared to previous year
5
1
gulp-typescript pmd reporter, to be used by Jenkins (Hudson). Writes output to an xml file.
1npm install gulp-typescript-jenkins-reporter -D
1var gulp = require('gulp'); 2var ts = require('gulp-typescript'); 3var reporter = require('gulp-typescript-jenkins-reporter'); 4 5gulp.task('compile', function() { 6 return gulp.src('./src/**/*.ts') 7 .pipe(ts({ 8 noImplicitAny: true, 9 out: 'output.js' 10 }, {}, reporter())) 11 .pipe(gulp.dest('./build')); 12});
see gulp-typescript for a detailed documentation on how to compile your project
1var gulp = require('gulp'); 2var ts = require('gulp-typescript'); 3var reporter = require('gulp-typescript-jenkins-reporter'); 4 5gulp.task('compile', function() { 6 return gulp.src('./src/**/*.ts') 7 .pipe(ts({ 8 noImplicitAny: true, 9 out: 'output.js' 10 }, {}, reporter({ 11 filename: 'pmd-report.xml' 12 pathBase: '/workspace', 13 pathPrefix: 'project', 14 sort: false 15 }))) 16 .pipe(gulp.dest('./build')); 17});
sort
type: boolean
default: false
will sort the files alphabetically within the report using their path.
filename
type: string
default: pmd.xml
the filename to write the report.
pathBase
type: string
default: ''
If given, the path of the files will be rebased according to the value. For instance, if your file path is
/my/awesome/yet/too/long/path/for/my/file.ts
and that you set
1{ 2 pathBase: '/path/for/my' 3}
you will end up with
/my/file.ts
pathPrefix
type: string
default: ''
a prefix to add to the path. Given the previous example, you could also add this :
1{ 2 pathBase: '/path/for/my', 3 pathPrefix: '/src' 4}
and end up with
/src/file.ts
The MIT License (MIT)
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/7 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More