2fas-browser-extension/webpack/development.config.js
2023-03-21 08:20:34 +01:00

28 lines
1.2 KiB
JavaScript

//
// 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 DEV Build [${process.env.EXT_PLATFORM}]`, '\x1b[0m');
module.exports = [
require('./development/background.dev.config'),
require('./development/contentScript.dev.config'),
require('./development/optionsPage.dev.config'),
require('./development/installPage.dev.config')
];