Skip to content

Commit

Permalink
fix: export ConfigStoreWithEnvironmentVariables
Browse files Browse the repository at this point in the history
  • Loading branch information
maxjeffos committed Dec 13, 2020
1 parent c25ab73 commit 5c6d1b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/user-config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const Configstore = require('configstore');
const pkg = require(__dirname + '/../../package.json');

class ConfigStoreWithEnvironmentVariables extends Configstore {
export class ConfigStoreWithEnvironmentVariables extends Configstore {
constructor(id, defaults = undefined, options = {}) {
super(id, defaults, options);
}
Expand Down

0 comments on commit 5c6d1b6

Please sign in to comment.