Gathering detailed insights and metrics for fork-ts-checker-notifier-webpack-plugin
Gathering detailed insights and metrics for fork-ts-checker-notifier-webpack-plugin
Gathering detailed insights and metrics for fork-ts-checker-notifier-webpack-plugin
Gathering detailed insights and metrics for fork-ts-checker-notifier-webpack-plugin
fork-ts-checker-webpack-plugin
Runs typescript type checker and linter on separate process.
webpack-notifier
webpack + node-notifier = build status system notifications
@vue/cli-plugin-typescript
typescript plugin for vue-cli
fork-ts-checker-webpack-plugin-alt
Runs typescript type checker and linter on separate process.
npm install fork-ts-checker-notifier-webpack-plugin
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
53 Stars
76 Commits
12 Forks
4 Watching
8 Branches
15 Contributors
Updated on 23 Oct 2023
TypeScript (82%)
JavaScript (9.71%)
Dockerfile (8.29%)
Cumulative downloads
Total Downloads
Last day
-16.8%
4,737
Compared to previous day
Last week
-0.9%
26,604
Compared to previous week
Last month
0.3%
112,478
Compared to previous month
Last year
-22.9%
1,449,396
Compared to previous year
This is a webpack plugin that uses the node-notifier package to display build status system notifications to the user. It's purpose is to work with the fork-ts-checker-webpack-plugin. This deliberately has a similar API as the excellent webpack-notifier plugin. If you are not using fork-ts-checker-webpack-plugin and you want system notifications then you probably want webpack-notifier.
The plugin will notify you about the first run (success/fail), all failed runs and the first successful run after recovering from a build failure. In other words: it will stay silent if everything is fine with your build.
This plugin requires minimum fork-ts-checker-webpack-plugin@6, webpack 4, see fork-ts-checker-webpack-plugin for minimum requirements.
Use yarn
to install packages:
yarn add --dev fork-ts-checker-webpack-plugin fork-ts-checker-notifier-webpack-plugin
Alternatively, use npm
:
npm install --save-dev fork-ts-checker-webpack-plugin fork-ts-checker-notifier-webpack-plugin
In the webpack.config.js
file:
1var ForkTsCheckerNotifierWebpackPlugin = require('fork-ts-checker-notifier-webpack-plugin'); 2var ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); 3 4var config = module.exports = { 5 /** 6 * Plugin order is important. 7 * A wrong order will cause some hooks to be undefined 8 * and the build to fail 9 */ 10 plugins: [ 11 new ForkTsCheckerWebpackPlugin(), 12 new ForkTsCheckerNotifierWebpackPlugin({ excludeWarnings: true }), 13 ] 14},
Title prefix shown in the notifications.
1new ForkTsCheckerNotifierWebpackPlugin({ title: 'Webpack' });
If set to true
, warnings will not cause a notification.
1new ForkTsCheckerNotifierWebpackPlugin({ excludeWarnings: true });
Trigger a notification every time. Call it "noisy-mode".
1new ForkTsCheckerNotifierWebpackPlugin({ alwaysNotify: true });
Do not notify on the first build. This allows you to receive notifications on subsequent incremental builds without being notified on the initial build.
1new ForkTsCheckerNotifierWebpackPlugin({ skipFirstNotification: true });
Skip notifications for successful builds.
1new ForkTsCheckerNotifierWebpackPlugin({ skipSuccessful: true });
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 9/18 approved changesets -- score normalized to 5
Reason
9 existing vulnerabilities detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
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
dependency not pinned by hash detected -- score normalized to 0
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