@travetto/runtime 8.0.0-alpha.6 → 8.0.0-alpha.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/runtime",
3
- "version": "8.0.0-alpha.6",
3
+ "version": "8.0.0-alpha.8",
4
4
  "type": "module",
5
5
  "description": "Runtime for travetto applications.",
6
6
  "keywords": [
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@travetto/manifest": "^8.0.0-alpha.4",
30
- "@types/debug": "^4.1.12",
30
+ "@types/debug": "^4.1.13",
31
31
  "debug": "^4.4.3",
32
32
  "temporal-polyfill-lite": "^0.3.2"
33
33
  },
@@ -41,7 +41,7 @@ export class FileLoader {
41
41
  * Read a file as utf8 text, after resolving the path
42
42
  * @param relativePath The path to read
43
43
  */
44
- async readText(relativePath: string): Promise<string> {
44
+ async readUTF8(relativePath: string): Promise<string> {
45
45
  const file = await this.resolve(relativePath);
46
46
  return fs.readFile(file, 'utf8');
47
47
  }