@sprucelabs/spruce-file-utils 18.0.0 → 18.0.1

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.
@@ -10,6 +10,9 @@ export default class SpruceError extends AbstractSpruceError {
10
10
  case 'BAD_REQUEST':
11
11
  message = 'A Bad request just happened!';
12
12
  break;
13
+ case 'LOCAL_SETTINGS_NOT_FOUND':
14
+ message = 'A Local settings not found just happened!';
15
+ break;
13
16
  default:
14
17
  message = super.friendlyMessage();
15
18
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sprucelabs/spruce-file-utils",
3
3
  "description": "Utils for working with files and Sprucebot.",
4
- "version": "18.0.0",
4
+ "version": "18.0.1",
5
5
  "skill": {
6
6
  "namespace": "files"
7
7
  },