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 3838 "@app-config/config" : " ^3.0.0-alpha.1" ,
3939 "@app-config/core" : " ^3.0.0-alpha.1" ,
4040 "@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" ,
4341 "@app-config/logging" : " ^3.0.0-alpha.1" ,
4442 "@app-config/meta" : " ^3.0.0-alpha.1" ,
4543 "@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;
8585 */
8686export const validateConfig : ValidateFunction < ExportedConfig > = null as any ; // eslint-disable-line
8787
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-
10588export { setLogLevel , LogLevel } from '@app-config/logging' ;
10689
10790export {
@@ -122,16 +105,6 @@ export {
122105 EnvironmentSource ,
123106} from '@app-config/node' ;
124107
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-
135108export {
136109 defaultExtensions ,
137110 defaultEnvExtensions ,
Original file line number Diff line number Diff line change 3030 "prepublishOnly" : " yarn clean && yarn build && yarn build:es"
3131 },
3232 "dependencies" : {
33+ "@app-config/core" : " ^3.0.0-alpha.1" ,
34+ "@app-config/utils" : " ^3.0.0-alpha.1" ,
3335 "@app-config/extension-utils" : " ^3.0.0-alpha.1" ,
3436 "@lcdev/fetch" : " ^0.1.10" ,
3537 "cross-fetch" : " 3" ,
3638 "node-vault" : " 0.9"
3739 },
38- "peerDependencies" : {
39- "@app-config/main" : " ^3.0.0-alpha.1"
40- },
4140 "devDependencies" : {
42- "@app-config/main" : " ^3.0.0-alpha.1"
4341 },
4442 "prettier" : " @lcdev/prettier" ,
4543 "jest" : {
Original file line number Diff line number Diff line change 11import fetch from 'cross-fetch' ;
22import { api , buildPath , setGlobalFetch } from '@lcdev/fetch' ;
33import 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' ;
56import { forKey , validateOptions } from '@app-config/extension-utils' ;
67
78setGlobalFetch ( fetch ) ;
You can’t perform that action at this time.
0 commit comments