@muspellheim/shared 0.6.0 → 0.6.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.
@@ -47,7 +47,7 @@ export class FileHandler extends Handler {
47
47
  }
48
48
  } catch (error) {
49
49
  // @ts-ignore NodeJS error code
50
- if (error.code !== 'ENOENT') {
50
+ if (error.code === 'ENOENT') {
51
51
  // ignore error if file does not exist
52
52
  console.error(error);
53
53
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muspellheim/shared",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "author": "Falko Schumann",
5
5
  "license": "MIT",
6
6
  "engines": {