gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: wallet-core: we don't rollup


From: gnunet
Subject: [taler-wallet-core] branch master updated: wallet-core: we don't rollup wallet-core anymore
Date: Sun, 23 Oct 2022 19:00:20 +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 1ab63a184 wallet-core: we don't rollup wallet-core anymore
1ab63a184 is described below

commit 1ab63a1840a516ef5f4655e6c08e62c01fd05949
Author: Florian Dold <florian@dold.me>
AuthorDate: Sun Oct 23 19:00:14 2022 +0200

    wallet-core: we don't rollup wallet-core anymore
---
 packages/taler-wallet-core/rollup.config.js | 90 -----------------------------
 1 file changed, 90 deletions(-)

diff --git a/packages/taler-wallet-core/rollup.config.js 
b/packages/taler-wallet-core/rollup.config.js
deleted file mode 100644
index 948b7fa80..000000000
--- a/packages/taler-wallet-core/rollup.config.js
+++ /dev/null
@@ -1,90 +0,0 @@
-// rollup.config.js
-import commonjs from "@rollup/plugin-commonjs";
-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";
-import replace from '@rollup/plugin-replace';
-import path from "path"
-import fs from "fs"
-
-const BASE = process.cwd()
-
-let GIT_ROOT = BASE
-while (!fs.existsSync(path.join(GIT_ROOT, '.git')) && GIT_ROOT !== '/') {
-  GIT_ROOT = path.join(GIT_ROOT, '../')
-}
-const GIT_HASH = GIT_ROOT === '/' ? undefined : git_hash()
-
-const nodeEntryPoint = {
-  input: "lib/index.node.js",
-  output: {
-    file: pkg.main,
-    format: "cjs",
-    sourcemap: true,
-  },
-  external: builtins,
-  plugins: [
-    nodeResolve({
-      preferBuiltins: true,
-      exportConditions: ["node"],
-    }),
-
-    sourcemaps(),
-    replace({
-      values: {
-        '__VERSION__': `"${pkg.version}"`,
-        '__GIT_HASH__': `"${GIT_HASH}"`,
-      },
-      preventAssignment: false,
-    }),
-
-    commonjs({
-      include: [/node_modules/, /dist/],
-      extensions: [".js"],
-      ignoreGlobal: false,
-      sourceMap: true,
-    }),
-
-    json(),
-  ],
-};
-
-const browserEntryPoint = {
-  input: "lib/index.browser.js",
-  output: {
-    file: pkg.browser[pkg.main],
-    format: "cjs",
-    sourcemap: true,
-  },
-  external: builtins,
-  plugins: [
-    nodeResolve({
-      browser: true,
-      preferBuiltins: true,
-    }),
-
-    sourcemaps(),
-
-    commonjs({
-      include: [/node_modules/, /dist/],
-      extensions: [".js"],
-      ignoreGlobal: false,
-      sourceMap: true,
-    }),
-
-    json(),
-  ],
-};
-
-export default [nodeEntryPoint, browserEntryPoint];
-
-function git_hash() {
-  const rev = fs.readFileSync(path.join(GIT_ROOT, '.git', 
'HEAD')).toString().trim().split(/.*[: ]/).slice(-1)[0];
-  if (rev.indexOf('/') === -1) {
-    return rev;
-  } else {
-    return fs.readFileSync(path.join(GIT_ROOT, '.git', rev)).toString().trim();
-  }
-}

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]