@indra.ai/deva 1.3.2 → 1.3.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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1382,7 +1382,7 @@ class Deva {
1382
1382
  helpFile = this.lib.path.join(help_dir, 'help', `${helpFile}.feecting`);
1383
1383
  try {
1384
1384
  this.state('resolve', 'help');
1385
- return resolve(fs.readFileSync(helpFile, 'utf8'));
1385
+ return resolve(this.lib.fs.readFileSync(helpFile, 'utf8'));
1386
1386
  } catch (e) {
1387
1387
  this.state('reject', 'helpFile');
1388
1388
  return reject(e)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indra.ai/deva",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "The Deva Core",
5
5
  "main": "index.js",
6
6
  "type": "module",