Skip to content

Commit

Permalink
:octocat: build sources via pre-push hook
Browse files Browse the repository at this point in the history
  • Loading branch information
amacado committed Dec 27, 2021
1 parent 11f853a commit cec9835
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dist/helper/ConfigurationManager/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
"use strict";
var _a;
const nconf = require('nconf');
nconf.env();
nconf.argv();
nconf.file({ file: 'config/config.json5', format: require('json5') });
const configFile = (_a = nconf.get('config')) !== null && _a !== void 0 ? _a : 'config/config.json5';
nconf.file({ file: configFile, format: require('json5') });
nconf.defaults({
'blink1': {
'hotplug': false,
Expand Down

0 comments on commit cec9835

Please sign in to comment.