File tree Expand file tree Collapse file tree 4 files changed +4
-34
lines changed Expand file tree Collapse file tree 4 files changed +4
-34
lines changed Original file line number Diff line number Diff line change 38
38
"@app-config/config" : " ^3.0.0-alpha.1" ,
39
39
"@app-config/core" : " ^3.0.0-alpha.1" ,
40
40
"@app-config/default-extensions" : " ^3.0.0-alpha.1" ,
41
- "@app-config/encryption" : " ^3.0.0-alpha.1" ,
42
- "@app-config/extensions" : " ^3.0.0-alpha.1" ,
43
41
"@app-config/logging" : " ^3.0.0-alpha.1" ,
44
42
"@app-config/meta" : " ^3.0.0-alpha.1" ,
45
43
"@app-config/node" : " ^3.0.0-alpha.1" ,
Original file line number Diff line number Diff line change @@ -85,23 +85,6 @@ export default config;
85
85
*/
86
86
export const validateConfig : ValidateFunction < ExportedConfig > = null as any ; // eslint-disable-line
87
87
88
- export { Json } from '@app-config/utils' ;
89
-
90
- export {
91
- ParsedValue ,
92
- ParsedValueMetadata ,
93
- ParsingExtension ,
94
- ParsingExtensionTransform ,
95
- ConfigSource ,
96
- LiteralSource ,
97
- CombinedSource ,
98
- FallbackSource ,
99
- FileType ,
100
- stringify ,
101
- filePathAssumedType ,
102
- parseRawString ,
103
- } from '@app-config/core' ;
104
-
105
88
export { setLogLevel , LogLevel } from '@app-config/logging' ;
106
89
107
90
export {
@@ -122,16 +105,6 @@ export {
122
105
EnvironmentSource ,
123
106
} from '@app-config/node' ;
124
107
125
- export {
126
- environmentVariableSubstitution ,
127
- envDirective ,
128
- extendsDirective ,
129
- extendsSelfDirective ,
130
- overrideDirective ,
131
- } from '@app-config/extensions' ;
132
-
133
- export { default as encryptedDirective } from '@app-config/encryption' ;
134
-
135
108
export {
136
109
defaultExtensions ,
137
110
defaultEnvExtensions ,
Original file line number Diff line number Diff line change 30
30
"prepublishOnly" : " yarn clean && yarn build && yarn build:es"
31
31
},
32
32
"dependencies" : {
33
+ "@app-config/core" : " ^3.0.0-alpha.1" ,
34
+ "@app-config/utils" : " ^3.0.0-alpha.1" ,
33
35
"@app-config/extension-utils" : " ^3.0.0-alpha.1" ,
34
36
"@lcdev/fetch" : " ^0.1.10" ,
35
37
"cross-fetch" : " 3" ,
36
38
"node-vault" : " 0.9"
37
39
},
38
- "peerDependencies" : {
39
- "@app-config/main" : " ^3.0.0-alpha.1"
40
- },
41
40
"devDependencies" : {
42
- "@app-config/main" : " ^3.0.0-alpha.1"
43
41
},
44
42
"prettier" : " @lcdev/prettier" ,
45
43
"jest" : {
Original file line number Diff line number Diff line change 1
1
import fetch from 'cross-fetch' ;
2
2
import { api , buildPath , setGlobalFetch } from '@lcdev/fetch' ;
3
3
import type { JsonObject } from '@lcdev/ts' ;
4
- import type { ParsingExtension , Json } from '@app-config/main' ;
4
+ import type { Json } from '@app-config/utils' ;
5
+ import type { ParsingExtension } from '@app-config/core' ;
5
6
import { forKey , validateOptions } from '@app-config/extension-utils' ;
6
7
7
8
setGlobalFetch ( fetch ) ;
You can’t perform that action at this time.
0 commit comments