File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 34
34
"prepublishOnly" : " yarn clean && yarn build && yarn build:es"
35
35
},
36
36
"dependencies" : {
37
- "@app-config/core " : " ^2.2.1" ,
38
- "@app-config/main " : " ^2.2.1" ,
37
+ "@app-config/config " : " ^2.2.1" ,
38
+ "@app-config/logging " : " ^2.2.1" ,
39
39
"@app-config/node" : " ^2.2.1" ,
40
+ "@app-config/schema" : " ^2.2.1" ,
40
41
"@types/yargs" : " 16" ,
41
42
"node-html-parser" : " 1" ,
42
43
"yargs" : " 16"
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
2
3
3
import * as yargs from 'yargs' ;
4
- import { setLogLevel , LogLevel } from '@app-config/main ' ;
4
+ import { setLogLevel , LogLevel } from '@app-config/logging ' ;
5
5
import { consumeStdin } from '@app-config/node' ;
6
6
import { injectHtml } from './index' ;
7
7
Original file line number Diff line number Diff line change 3
3
loadValidatedConfig ,
4
4
loadUnvalidatedConfig ,
5
5
ConfigLoadingOptions ,
6
- SchemaLoadingOptions ,
7
- } from '@app-config/main ' ;
6
+ } from '@app-config/config' ;
7
+ import { SchemaLoadingOptions } from '@app-config/schema ' ;
8
8
9
9
export { cli } from './cli' ;
10
10
Original file line number Diff line number Diff line change 7
7
"include" : [" src" ],
8
8
"exclude" : [" node_modules" ],
9
9
"references" : [
10
- { "path" : " ../app-config-main" }
10
+ { "path" : " ../app-config-config" },
11
+ { "path" : " ../app-config-logging" },
12
+ { "path" : " ../app-config-node" },
13
+ { "path" : " ../app-config-schema" }
11
14
]
12
15
}
You can’t perform that action at this time.
0 commit comments