Imported Upstream version 1.12.0
[platform/upstream/gpgme.git] / lang / js / webpack.conf.js
1 /* gpgme.js - Javascript integration for gpgme
2  * Copyright (C) 2018 Bundesamt für Sicherheit in der Informationstechnik
3  *
4  * This file is part of GPGME.
5  *
6  * GPGME is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU Lesser General Public License as
8  * published by the Free Software Foundation; either version 2.1 of
9  * the License, or (at your option) any later version.
10  *
11  * GPGME is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this program; if not, see <http://www.gnu.org/licenses/>.
18  * SPDX-License-Identifier: LGPL-2.1+
19  *
20  * This is the configuration file for building the gpgmejs-Library with webpack
21  */
22 /* global require, module, __dirname */
23 const path = require('path');
24
25 module.exports = {
26     entry: './src/index.js',
27     // mode: 'development',
28     mode: 'production',
29     output: {
30         path: path.resolve(__dirname, 'build'),
31         filename: 'gpgmejs.bundle.js',
32         libraryTarget: 'var',
33         libraryExport: 'default',
34         library: 'Gpgmejs'
35     }
36 };