@lwrjs/module-bundler 0.11.0-alpha.9 → 0.11.0

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.
@@ -27,7 +27,7 @@ __export(exports, {
27
27
  minifyJavascript: () => minifyJavascript,
28
28
  parseJavascript: () => parseJavascript
29
29
  });
30
- var import_shared_utils = __toModule(require("@lwrjs/shared-utils"));
30
+ var import_diagnostics = __toModule(require("@lwrjs/diagnostics"));
31
31
  var import_esbuild = __toModule(require("esbuild"));
32
32
  var import_features = __toModule(require("@lwc/features"));
33
33
  var lwcFeatureFlags = "default" in import_features.default ? import_features.default.default : import_features.default;
@@ -52,7 +52,7 @@ async function minifyJavascript(source) {
52
52
  });
53
53
  return code;
54
54
  } catch (error) {
55
- import_shared_utils.logger.debug(error);
55
+ import_diagnostics.logger.debug(error);
56
56
  throw error;
57
57
  }
58
58
  }
@@ -68,7 +68,7 @@ async function parseJavascript(source, options) {
68
68
  });
69
69
  return code;
70
70
  } catch (error) {
71
- import_shared_utils.logger.debug(error);
71
+ import_diagnostics.logger.debug(error);
72
72
  throw error;
73
73
  }
74
74
  }
@@ -1,4 +1,4 @@
1
- import { logger } from '@lwrjs/shared-utils';
1
+ import { logger } from '@lwrjs/diagnostics';
2
2
  import esbuildEsm from 'esbuild';
3
3
  import features from '@lwc/features';
4
4
  // In certain envs, this default import is not compiled correctly
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.11.0-alpha.9",
7
+ "version": "0.11.0",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -47,12 +47,13 @@
47
47
  "build/**/*.d.ts"
48
48
  ],
49
49
  "dependencies": {
50
- "@lwrjs/shared-utils": "0.11.0-alpha.9",
50
+ "@lwrjs/diagnostics": "0.11.0",
51
+ "@lwrjs/shared-utils": "0.11.0",
51
52
  "@rollup/plugin-replace": "^2.4.2",
52
53
  "rollup": "^2.78.0"
53
54
  },
54
55
  "devDependencies": {
55
- "@lwrjs/types": "0.11.0-alpha.9",
56
+ "@lwrjs/types": "0.11.0",
56
57
  "jest": "^26.6.3",
57
58
  "ts-jest": "^26.5.6"
58
59
  },
@@ -60,7 +61,7 @@
60
61
  "esbuild": "^0.9.7"
61
62
  },
62
63
  "peerDependencies": {
63
- "@lwc/features": "2.x || 3.x"
64
+ "@lwc/features": "2.x || 3.x || 4.x"
64
65
  },
65
66
  "engines": {
66
67
  "node": ">=16.0.0"
@@ -68,5 +69,5 @@
68
69
  "volta": {
69
70
  "extends": "../../../package.json"
70
71
  },
71
- "gitHead": "bc50e3f828be56ebdd2f8206cafe8158ab722470"
72
+ "gitHead": "fbc883ea90a12672ce6f1adc2201144fda8762bd"
72
73
  }