File: web-easier-build.patch

package info (click to toggle)
transmission 4.1.0~beta2%2Bdfsg-3%2Bdeb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 39,812 kB
  • sloc: cpp: 146,009; javascript: 5,801; ansic: 4,119; xml: 550; sh: 477; python: 213; makefile: 75
file content (24 lines) | stat: -rw-r--r-- 719 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
From: Alexandre Rossi <niol@zincube.net>
Date: Mon, 29 Apr 2024 15:56:35 +0100
Subject: Avoid extra node modules dependencies

Forwarded: not-needed

   - pack precompiled css instead of relying on sass compiler API
---
 web/src/main.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/web/src/main.js b/web/src/main.js
index b2722ae..481ba13 100644
--- a/web/src/main.js
+++ b/web/src/main.js
@@ -9,7 +9,7 @@ import { Prefs } from './prefs.js';
 import { Transmission } from './transmission.js';
 import { debounce } from './utils.js';
 
-import '../assets/css/transmission-app.scss';
+import '../assets/css/transmission-app.css';
 
 function main() {
   const action_manager = new ActionManager();