From 16d4c436cbc731012d55b600a7b81afc85d9eb1a Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 28 Apr 2016 10:14:42 -0700 Subject: [PATCH] Keep exporting deprecate/deprecations --- lib/common/api/exports/electron.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/common/api/exports/electron.js b/lib/common/api/exports/electron.js index 65da6c5d2b91..1e9c2d71f3b7 100644 --- a/lib/common/api/exports/electron.js +++ b/lib/common/api/exports/electron.js @@ -33,6 +33,16 @@ exports.defineProperties = function (exports) { get: function () { return require('../callbacks-registry') } + }, + deprecate: { + get: function () { + return require('../deprecate') + } + }, + deprecations: { + get: function () { + return require('../deprecations') + } } }) }