[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-wallet-core] branch master updated: enable sourcemaps for taler-w
From: |
gnunet |
Subject: |
[taler-wallet-core] branch master updated: enable sourcemaps for taler-wallet-cli |
Date: |
Thu, 27 Aug 2020 11:04:22 +0200 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository wallet-core.
The following commit(s) were added to refs/heads/master by this push:
new c35b83ca enable sourcemaps for taler-wallet-cli
c35b83ca is described below
commit c35b83cae13bb86ae3d4ea37b118473b44350317
Author: Florian Dold <florian.dold@gmail.com>
AuthorDate: Thu Aug 27 14:22:47 2020 +0530
enable sourcemaps for taler-wallet-cli
---
packages/taler-wallet-cli/rollup.config.js | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/packages/taler-wallet-cli/rollup.config.js
b/packages/taler-wallet-cli/rollup.config.js
index 07930e00..e7d7a700 100644
--- a/packages/taler-wallet-cli/rollup.config.js
+++ b/packages/taler-wallet-cli/rollup.config.js
@@ -4,12 +4,14 @@ import nodeResolve from "@rollup/plugin-node-resolve";
import json from "@rollup/plugin-json";
import builtins from "builtin-modules";
import pkg from "./package.json";
+import sourcemaps from 'rollup-plugin-sourcemaps';
export default {
input: "lib/index.js",
output: {
file: pkg.main,
format: "cjs",
+ sourcemap: true,
},
external: builtins,
plugins: [
@@ -17,12 +19,14 @@ export default {
preferBuiltins: true,
}),
- json(),
+ sourcemaps(),
commonjs({
- sourceMap: false,
+ sourceMap: true,
transformMixedEsModules: true,
}),
+
+ json(),
],
}
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-wallet-core] branch master updated: enable sourcemaps for taler-wallet-cli,
gnunet <=