Skip to content

Commit 55ef686

Browse files
feat: enable for liwijs
1 parent 1791a7b commit 55ef686

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/accountConfigs/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import christophehurpeau from './christophehurpeau';
2+
import liwijs from './liwijs';
23
import ornikar from './ornikar';
34
import reviewflow from './reviewflow';
45
import type { Config as ConfigType } from './types';
@@ -9,6 +10,7 @@ export type Config<
910
> = ConfigType<GroupNames, TeamNames>;
1011

1112
export const accountConfigs: Record<string, Config> = {
13+
liwijs,
1214
ornikar,
1315
christophehurpeau,
1416
reviewflow,

src/accountConfigs/liwijs.ts

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import chrisconfig from './christophehurpeau';
2+
import type { Config } from './types';
3+
4+
const config: Config<'dev', never> = {
5+
...chrisconfig,
6+
};
7+
export default config;

0 commit comments

Comments
 (0)