@scaleway/configuration-loader 0.1.0-beta.2 → 0.1.0-beta.3
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/CHANGELOG.md +8 -0
- package/README.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 0.1.0-beta.3 (2022-08-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @scaleway/configuration-loader
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.1.0-beta.2](https://github.com/scaleway/scaleway-sdk-js/compare/@scaleway/configuration-loader@0.1.0-beta.1...@scaleway/configuration-loader@0.1.0-beta.2) (2022-07-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @scaleway/configuration-loader
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ const profile = {
|
|
|
20
20
|
}
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
And then use this profile to
|
|
23
|
+
And then use this profile to instantiate the SDK client with `const client = createClient(profile)`.
|
|
24
24
|
|
|
25
25
|
However, you might prefer to store these variables in either a configuration file (e.g. local testing) or environment variables (e.g. serverless).
|
|
26
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/configuration-loader",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.3",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Load configuration via file or environment for NodeJS.",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -21,5 +21,5 @@
|
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/node": "^17.0.45"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "d0dccb15478b4b9580c5696920fc210b3ab18e98"
|
|
25
25
|
}
|