Gathering detailed insights and metrics for gulp-jest-cli
Gathering detailed insights and metrics for gulp-jest-cli
Gathering detailed insights and metrics for gulp-jest-cli
Gathering detailed insights and metrics for gulp-jest-cli
npm install gulp-jest-cli
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
3 Stars
5 Commits
1 Forks
2 Watchers
1 Branches
1 Contributors
Updated on Apr 02, 2018
Latest Version
0.0.3
Package Id
gulp-jest-cli@0.0.3
Size
3.74 kB
NPM Version
3.10.10
Node Version
7.2.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1$ npm install gulp-jest-cli jest-cli --save-dev
1$ yarn add gulp-jest-cli jest-cli --dev
1import plugin from 'gulp-jest-cli'; 2 3gulp.task('jest', () => gulp 4 /* 5 * Jest's `rootDir` will be set to the directory specified in `gulp.src` 6 * unless a `rootDir` is explicitly configured via configuration options 7 */ 8 .src('src') 9 .pipe(plugin({ 10 config: { 11 /* Configuration options */ 12 { 13 coverageReporters: [ 14 'text', 15 'text-summary', 16 'json', 17 'lcov', 18 ], 19 collectCoverageFrom: [ 20 '**/*.js', 21 '!**/*test*', 22 ] 23 } 24 }, 25 /* CLI options*/ 26 coverage: true, 27 onlyChanged: true, 28 })) 29);
Jest docs for configuration options can be found here.
1import plugin from 'gulp-jest-cli'; 2 3gulp.task('jest', () => gulp 4 .src('src') 5 .pipe(plugin({ 6 config: '.jestrc', 7 /* CLI options */ 8 coverage: true, 9 onlyChanged: true, 10 })) 11);
1import plugin from 'gulp-jest-cli'; 2 3gulp.task('jest', () => gulp 4 .src('src') 5 .pipe(plugin({ 6 /* Jest will fallback to package.json for configuration when `config` is omitted */ 7 /* CLI options */ 8 coverage: true, 9 onlyChanged: true, 10 })) 11);
Feel free to reach out to me on Twitter @jmurzy.
Contributions are very welcome: bug fixes, features, documentation, tests. Just make sure the CI is 👌.
#### License All pull requests that get merged will be made available under [the MIT license](https://github.com/jmurzy/gulp-jest-cli/blob/master/LICENSE.md), as the rest of the repository.No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/5 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- 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
branch protection not enabled on development/release branches
Details
Reason
81 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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