From 0afa18eed314de8fc3a933fa45837e66d12a94d2 Mon Sep 17 00:00:00 2001 From: Luk Lu Date: Sat, 30 May 2020 14:27:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E6=89=93=E5=8C=85Config*.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ConfigBasic.js | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 ConfigBasic.js diff --git a/ConfigBasic.js b/ConfigBasic.js deleted file mode 100644 index a09cc85..0000000 --- a/ConfigBasic.js +++ /dev/null @@ -1,7 +0,0 @@ -'use strict' - -module.exports = { // 全大写字母的,代表系统常量,不要在 userConfig 或命令行参数里覆盖。小写驼峰的,是用户可以覆盖的。 - commanderOptions: [ // 命令行里可以接受的参数。将传给 config.js 里的 commander。每个参数的定义格式是 [参数名,参数键,描述],后两者用于传给commander,取值后覆盖掉Config里的同名变量。 - ['port', '-p, --port ', 'web server port'] - ] -}