@lwrjs/label-module-provider 0.17.2-alpha.9 → 0.17.3

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/build/es/index.js CHANGED
@@ -8,10 +8,15 @@ const DEFAULT_DIR = [
8
8
  },
9
9
  ];
10
10
  export default class LabelModuleProvider {
11
+ name = 'label-module-provider';
12
+ version;
13
+ defaultLocale;
14
+ provideDefault;
15
+ labelDirs = [];
16
+ i18n;
17
+ useI18nFallbacks;
18
+ labelJsonCache = new Map(); // TODO: file watcher
11
19
  constructor({ provideDefault = false, labelDirs = DEFAULT_DIR }, { config, runtimeEnvironment: { lwrVersion } }) {
12
- this.name = 'label-module-provider';
13
- this.labelDirs = [];
14
- this.labelJsonCache = new Map(); // TODO: file watcher
15
20
  this.version = lwrVersion;
16
21
  this.defaultLocale = config.i18n.defaultLocale;
17
22
  this.provideDefault = provideDefault;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.17.2-alpha.9",
7
+ "version": "0.17.3",
8
8
  "homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
9
9
  "repository": {
10
10
  "type": "git",
@@ -33,16 +33,16 @@
33
33
  "build": "tsc -b"
34
34
  },
35
35
  "dependencies": {
36
- "@lwrjs/diagnostics": "0.17.2-alpha.9",
37
- "@lwrjs/shared-utils": "0.17.2-alpha.9",
36
+ "@lwrjs/diagnostics": "0.17.3",
37
+ "@lwrjs/shared-utils": "0.17.3",
38
38
  "ajv": "6.12.6"
39
39
  },
40
40
  "devDependencies": {
41
- "@lwrjs/types": "0.17.2-alpha.9",
41
+ "@lwrjs/types": "0.17.3",
42
42
  "memfs": "^4.13.0"
43
43
  },
44
44
  "engines": {
45
- "node": ">=18.0.0"
45
+ "node": ">=20.0.0"
46
46
  },
47
- "gitHead": "7ede5d04a97513b9869b13e66155bc4f3920bb99"
47
+ "gitHead": "9adba8b8dc0e24690ac99106eae138db2f429834"
48
48
  }