diff --git a/src/package.coffee b/src/package.coffee index 1a9834a24..4fd86120d 100644 --- a/src/package.coffee +++ b/src/package.coffee @@ -371,9 +371,10 @@ class Package # to minimize the impact on startup time. getIncompatibleNativeModules: -> localStorageKey = "installed-packages:#{@name}:#{@metadata.version}" - try - {incompatibleNativeModules} = JSON.parse(global.localStorage.getItem(localStorageKey)) ? {} - return incompatibleNativeModules if incompatibleNativeModules? + if not atom.inDevMode() + try + {incompatibleNativeModules} = JSON.parse(global.localStorage.getItem(localStorageKey)) ? {} + return incompatibleNativeModules if incompatibleNativeModules? incompatibleNativeModules = [] for nativeModulePath in @getNativeModuleDependencyPaths()