Skip to content

Commit

Permalink
feat(client-electron): add status bar
Browse files Browse the repository at this point in the history
  • Loading branch information
marcincichocki authored May 2, 2021
1 parent 148bcad commit afb1173
Show file tree
Hide file tree
Showing 21 changed files with 883 additions and 244 deletions.
3 changes: 3 additions & 0 deletions configs/webpack.config.main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ export const config: webpack.Configuration = {
mode: 'development',
entry: join(__dirname, '../src/client-electron/main/main.ts'),
target: 'electron-main',
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json'],
},
output: {
path: join(__dirname, '../dist'),
filename: 'main.js',
Expand Down
6 changes: 2 additions & 4 deletions configs/webpack.config.renderer.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import HtmlWebpackPlugin from 'html-webpack-plugin';
import { TsconfigPathsPlugin } from 'tsconfig-paths-webpack-plugin';
import { join } from 'path';
import webpack from 'webpack';

Expand All @@ -12,6 +13,7 @@ export const config: webpack.Configuration = {
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json'],
plugins: [new TsconfigPathsPlugin()],
},
module: {
rules: [
Expand All @@ -20,10 +22,6 @@ export const config: webpack.Configuration = {
exclude: /node_modules/,
loader: 'ts-loader',
},
{
test: /\.s[ac]ss$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
},
{
test: /\.ttf$/,
loader: 'file-loader',
Expand Down
Loading

0 comments on commit afb1173

Please sign in to comment.