mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-11 10:51:38 +01:00
32 lines
829 B
Plaintext
32 lines
829 B
Plaintext
From 7f7207b3543ade34ab70141f6cf56bc05a5e7018 Mon Sep 17 00:00:00 2001
|
|
From: LN Liberda <lauren@selfisekai.rocks>
|
|
Date: Wed, 21 Jan 2026 20:38:45 +0100
|
|
Subject: [PATCH] Disable sourcemaps
|
|
|
|
---
|
|
rollup.config.ts | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/rollup.config.ts b/rollup.config.ts
|
|
index 360377fab..749ee4ba7 100644
|
|
--- a/rollup.config.ts
|
|
+++ b/rollup.config.ts
|
|
@@ -81,7 +81,7 @@ export default async function getConfig(
|
|
freeze: false,
|
|
generatedCode: 'es2015',
|
|
interop: 'default',
|
|
- sourcemap: true
|
|
+ sourcemap: false
|
|
},
|
|
plugins: [
|
|
...nodePlugins,
|
|
@@ -133,7 +133,7 @@ export default async function getConfig(
|
|
format: 'umd',
|
|
name: 'rollup',
|
|
plugins: [copyBrowserTypes()],
|
|
- sourcemap: true
|
|
+ sourcemap: false
|
|
},
|
|
{
|
|
banner: getBanner,
|