forked from flathub/com.bitwarden.desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webfonts.patch
27 lines (24 loc) · 1.2 KB
/
webfonts.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From 185055af72386f131f3c6e7c61ffb0f51c0ff82a Mon Sep 17 00:00:00 2001
From: Ghislain Antony Vaillant <[email protected]>
Date: Tue, 28 Aug 2018 12:22:44 +0200
Subject: [PATCH] Do not call gulp prebuild:renderer
---
package.json | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package.json b/package.json
index 945168f..ca1a496 100644
--- a/package.json
+++ b/package.json
@@ -27,8 +27,8 @@
"lint:fix": "tslint src/**/*.ts --fix",
"build": "concurrently -n Main,Rend -c yellow,cyan \"npm run build:main\" \"npm run build:renderer\"",
"build:main": "webpack --config webpack.main.js",
- "build:renderer": "gulp prebuild:renderer && webpack --config webpack.renderer.js",
- "build:renderer:watch": "gulp prebuild:renderer && webpack --config webpack.renderer.js --watch",
+ "build:renderer": "webpack --config webpack.renderer.js",
+ "build:renderer:watch": "webpack --config webpack.renderer.js --watch",
"electron": "npm run build:main && concurrently -k -n Main,Rend -c yellow,cyan \"electron --inspect=5858 ./build --watch\" \"npm run build:renderer:watch\"",
"clean:dist": "rimraf ./dist/*",
"clean:l10n": "git push origin --delete l10n_master",
--
2.18.0