From 5c53a8cb3ea468ca43db448273d6c1d18d8f36ee Mon Sep 17 00:00:00 2001 From: Christoph Settgast Date: Fri, 25 Mar 2022 07:05:38 +0100 Subject: chore(deps): remove process polyfill (#738) The @atlaskit/navigation also works fine without reference to whether its running on mac or not (for the way its used in this project). --- webpack.renderer.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'webpack.renderer.js') diff --git a/webpack.renderer.js b/webpack.renderer.js index 0506225..d28284d 100644 --- a/webpack.renderer.js +++ b/webpack.renderer.js @@ -1,6 +1,5 @@ const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); -const webpack = require('webpack'); const ELECTRON_VERSION = require('./package.json').devDependencies.electron; module.exports = { @@ -15,9 +14,6 @@ module.exports = { plugins: [ new HtmlWebpackPlugin({ template: './app/index.html' - }), - new webpack.ProvidePlugin({ - process: 'process/browser' }) ], output: { @@ -84,10 +80,7 @@ module.exports = { resolve: { modules: [ path.resolve('./node_modules') - ], - alias: { - process: 'process/browser' - } + ] } }; -- cgit v1.2.3