@omnia/tooling-vue 8.0.336-dev → 8.0.338-dev

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.
@@ -469,7 +469,9 @@ function bundleManifest(entries) {
469
469
  function recursiveCompile() {
470
470
  let compiler = $.webpack(webpackConfigs.slice(start, end));
471
471
  let startTime = new Date().getTime();
472
- tooling_1.utils.logTime(`Bundle a batch manifests from ${start} to ${end} running...`, startTime);
472
+ if (end >= 500) {
473
+ tooling_1.utils.logTime(`Bundle a batch manifests from ${start} to ${end} running...`, startTime);
474
+ }
473
475
  compiler.run((err, stats) => {
474
476
  if (err) {
475
477
  $.tooling.log('Bundle manifest error : \r\n', $.tooling.LogTypes.Error);
@@ -512,11 +514,15 @@ function bundleManifest(entries) {
512
514
  }
513
515
  fsExtra.removeSync(stylexFilePath);
514
516
  });
515
- tooling_1.utils.logTime(`Bundle a batch manifests from ${start} to ${end} done`, startTime);
517
+ if (end >= 500) {
518
+ tooling_1.utils.logTime(`Bundle a batch manifests from ${start} to ${end} done`, startTime);
519
+ }
516
520
  resolve(entries);
517
521
  }
518
522
  else {
519
- tooling_1.utils.logTime(`Bundle a batch manifests from ${start} to ${end} done`, startTime);
523
+ if (end >= 500) {
524
+ tooling_1.utils.logTime(`Bundle a batch manifests from ${start} to ${end} done`, startTime);
525
+ }
520
526
  start = start + 500;
521
527
  end = (end + 500) > webpackConfigs.length ? webpackConfigs.length : end + 500;
522
528
  recursiveCompile();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/tooling-vue",
3
3
  "license": "MIT",
4
- "version": "8.0.336-dev",
4
+ "version": "8.0.338-dev",
5
5
  "description": "Used to bundle and serve manifests web component that build on Vue framework.",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -19,8 +19,8 @@
19
19
  ],
20
20
  "author": "Precio Fishbone",
21
21
  "dependencies": {
22
- "@omnia/fx-models": "8.0.336-dev",
23
- "@omnia/tooling-composers": "8.0.336-dev",
22
+ "@omnia/fx-models": "8.0.338-dev",
23
+ "@omnia/tooling-composers": "8.0.338-dev",
24
24
  "@types/mousetrap": "1.5.34",
25
25
  "@types/quill": "1.3.6",
26
26
  "@types/zepto": "1.0.29",