2fas-browser-extension/webpack/production.config.js

28 lines
1.2 KiB
JavaScript
Raw Normal View History

2023-03-21 08:20:34 +01:00
//
// This file is part of the 2FAS Browser Extension (https://github.com/twofas/2fas-browser-extension)
// Copyright © 2023 Two Factor Authentication Service, Inc.
// Contributed by Grzegorz Zając. All rights reserved.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>
//
console.log('\x1b[32m', `Webpack PROD Build [${process.env.EXT_PLATFORM}]`, '\x1b[0m');
module.exports = [
require('./production/background.prod.config'),
require('./production/contentScript.prod.config'),
require('./production/optionsPage.prod.config'),
require('./production/installPage.prod.config')
];