@scaleway/configuration-loader 0.0.2-alpha.1 → 0.1.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -83,4 +83,4 @@ declare const loadProfileFromEnvironmentValues: () => Profile;
|
|
|
83
83
|
*/
|
|
84
84
|
declare const loadProfileFromConfigurationFile: (params?: Readonly<ProfileFromFileParams> | undefined) => Profile;
|
|
85
85
|
|
|
86
|
-
export { ProfileFromFileParams, loadProfileFromConfigurationFile, loadProfileFromEnvironmentValues };
|
|
86
|
+
export { Profile, ProfileFromFileParams, loadProfileFromConfigurationFile, loadProfileFromEnvironmentValues };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/configuration-loader",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0-alpha.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Load configuration via file or environment for NodeJS.",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -17,5 +17,5 @@
|
|
|
17
17
|
"node": ">=v14.19.1"
|
|
18
18
|
},
|
|
19
19
|
"type": "module",
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "0b4a76737dc1103b1cb2a8b790235711309ec715"
|
|
21
21
|
}
|