зеркало из
1
0
Форкнуть 0
opensource-management-portal/scripts/configuration.ts

19 строки
431 B
TypeScript
Исходник Обычный вид История

2023-02-11 08:34:57 +03:00
//
// Copyright (c) Microsoft.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
2023-06-12 03:42:22 +03:00
import job from '../job';
2023-08-15 08:04:30 +03:00
job.run(
async (providers) => {
const { config } = providers;
for (const key of Object.getOwnPropertyNames(config)) {
console.log(`${key}\n`);
console.dir(config[key]);
console.log();
}
},
{ name: 'Script: View configuration' }
);