From 61b4fc7d2921a7b11daee0f044091add9731d9f0 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Wed, 1 Nov 2017 15:30:21 -0600 Subject: [PATCH] Actually require @atom/nsfw dependency in path-watcher.js :facepalm: --- src/path-watcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path-watcher.js b/src/path-watcher.js index 2dfece46e..5a2d10bde 100644 --- a/src/path-watcher.js +++ b/src/path-watcher.js @@ -4,7 +4,7 @@ const fs = require('fs') const path = require('path') const {Emitter, Disposable, CompositeDisposable} = require('event-kit') -const nsfw = require('nsfw') +const nsfw = require('@atom/nsfw') const {NativeWatcherRegistry} = require('./native-watcher-registry') // Private: Associate native watcher action flags with descriptive String equivalents.