From b4fa03a4a04fe1b9afffb66a3d6499e1c779b39a Mon Sep 17 00:00:00 2001 From: Ash Wilson Date: Tue, 15 Jan 2019 15:52:08 -0500 Subject: [PATCH] It's `event.action`, not `event.type` --- src/project.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/project.js b/src/project.js index adf2b5156..33d9c4534 100644 --- a/src/project.js +++ b/src/project.js @@ -204,7 +204,7 @@ class Project extends Model { // // absolute path to the filesystem entry that was touched // console.log(`Event path: ${event.path}`) // - // if (event.type === 'renamed') { + // if (event.action === 'renamed') { // console.log(`.. renamed from: ${event.oldPath}`) // } // }