@eclipse-scout/cli 22.0.2 → 22.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/scout-scripts.js
CHANGED
|
@@ -182,8 +182,7 @@ function logWebpack(err, stats, statsConfig) {
|
|
|
182
182
|
}
|
|
183
183
|
statsConfig = statsConfig || {};
|
|
184
184
|
if (typeof statsConfig === 'string') {
|
|
185
|
-
|
|
186
|
-
statsConfig = webpack.Stats.presetToOptions(statsConfig);
|
|
185
|
+
statsConfig = stats.compilation.createStatsOptions(statsConfig);
|
|
187
186
|
}
|
|
188
187
|
statsConfig.colors = true;
|
|
189
188
|
console.log(stats.toString(statsConfig) + '\n\n');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eclipse-scout/cli",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.10",
|
|
4
4
|
"description": "CLI for Eclipse Scout",
|
|
5
5
|
"author": "BSI Business Systems Integration AG",
|
|
6
6
|
"homepage": "https://www.eclipse.org/scout",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"karma-jasmine": "4.0.1",
|
|
47
47
|
"karma-jasmine-ajax": "0.1.13",
|
|
48
48
|
"@metahub/karma-jasmine-jquery": "4.0.1",
|
|
49
|
-
"@eclipse-scout/karma-jasmine-scout": "22.0.
|
|
49
|
+
"@eclipse-scout/karma-jasmine-scout": "22.0.10",
|
|
50
50
|
"karma-jasmine-html-reporter": "1.7.0",
|
|
51
51
|
"karma-junit-reporter": "2.0.1",
|
|
52
52
|
"karma-webpack": "5.0.0",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* All rights reserved. This program and the accompanying materials
|
|
4
4
|
* are made available under the terms of the Eclipse Public License v1.0
|
|
5
5
|
* which accompanies this distribution, and is available at
|
|
6
|
-
*
|
|
6
|
+
* https://www.eclipse.org/legal/epl-v10.html
|
|
7
7
|
*
|
|
8
8
|
* Contributors:
|
|
9
9
|
* BSI Business Systems Integration AG - initial API and implementation
|
|
@@ -152,9 +152,9 @@ module.exports = (env, args) => {
|
|
|
152
152
|
[require.resolve('@babel/preset-env'), {
|
|
153
153
|
debug: false,
|
|
154
154
|
targets: {
|
|
155
|
-
firefox: '
|
|
156
|
-
chrome: '
|
|
157
|
-
safari: '12'
|
|
155
|
+
firefox: '69',
|
|
156
|
+
chrome: '71',
|
|
157
|
+
safari: '12.1'
|
|
158
158
|
}
|
|
159
159
|
}]
|
|
160
160
|
]
|
|
@@ -216,7 +216,8 @@ module.exports = (env, args) => {
|
|
|
216
216
|
}),
|
|
217
217
|
// minify js
|
|
218
218
|
new TerserPlugin({
|
|
219
|
-
test: /\.js(\?.*)?$/i
|
|
219
|
+
test: /\.js(\?.*)?$/i,
|
|
220
|
+
parallel: 4
|
|
220
221
|
})
|
|
221
222
|
];
|
|
222
223
|
}
|