Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eclipse-scout-cli/bin/scout-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const webpackConfigFileName = './webpack.config.js';
const webpackCustomConfigFileName = './webpack.config.custom.js';
const StatsExtractWebpackPlugin = require('../scripts/StatsExtractWebpackPlugin');
const webpackYargsOptions = {
boolean: ['progress', 'profile', 'clean'],
boolean: ['progress', 'profile', 'clean', 'watch', 'cyclonedxSkip'],
array: ['resDirArray', 'themes']
};
const buildYargsOptions = {
Expand Down
2 changes: 1 addition & 1 deletion eclipse-scout-cli/scripts/webpack-defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const ts = require('typescript');
* @param {boolean} args.profile true, to show timing information for each build step. Default is false.
* @param {boolean} args.watch true, if webpack runs in watch mode. Default is false.
* @param {boolean} args.cyclonedxSkip true, if no CycloneDX SBOM should be created. Default is false.
* @param {string} args.cyclonedxVersion CycloneDX version to use. Default is '1.5'.
* @param {string} args.cyclonedxVersion CycloneDX version to use. Default is '1.6'.
* @param {[]} args.resDirArray an array containing directories which should be copied to dist/res
* @param {object} args.tsOptions a config object to be passed to the ts-loader
* @param {object} args.forkTypeCheckOptions a config object to be passed to the ForkTsCheckerWebpackPlugin
Expand Down
Loading