merger-js
Version:
Yet another simple cross-platform CLI build tool to bundle JavaScript files, with a custom file import syntax, ES8+ minification, auto build capabilities, and native OS notifications.
19 lines (16 loc) • 514 B
JavaScript
/*
* Copyright (c) 2018-2020 João Pedro Martins Neves - All Rights Reserved.
*
* MergerJS (merger-js) is licensed under the
* GPLv3.0 license (GNU General Public License v3.0),
* located in the root of this project, under the name "LICENSE.md".
*/
const configKeys = Object.freeze( {
minify: 'uglify',
autoBuild: 'autoBuild',
notifs: 'notifications',
updateOnLaunch: 'updateOnLaunch',
lastUpdateCheck: 'lastUpdateCheck',
nodeModulesPath: 'nodeModulesPath'
} );
module.exports = configKeys;