@scaleway/configuration-loader 0.1.0-alpha.7 → 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/.npmignore CHANGED
@@ -3,4 +3,3 @@ examples/
3
3
  src
4
4
  .eslintrc.cjs
5
5
  !.npmignore
6
- CHANGELOG.md
package/CHANGELOG.md ADDED
@@ -0,0 +1,16 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
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
+
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)
15
+
16
+ **Note:** Version bump only for package @scaleway/configuration-loader
package/README.md CHANGED
@@ -1,7 +1,5 @@
1
1
  # Configuration Loader
2
2
 
3
- Scaleway is a single way to create, deploy and scale your infrastructure in the cloud.
4
-
5
3
  This package enables you to load a profile from a configuration file or environment variables.
6
4
 
7
5
  **🔗  Important links:**
@@ -22,7 +20,7 @@ const profile = {
22
20
  }
23
21
  ```
24
22
 
25
- And then use this profile to instanciate the [SDK](./sdk) client with `const client = createClient(profile)`.
23
+ And then use this profile to instantiate the SDK client with `const client = createClient(profile)`.
26
24
 
27
25
  However, you might prefer to store these variables in either a configuration file (e.g. local testing) or environment variables (e.g. serverless).
28
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/configuration-loader",
3
- "version": "0.1.0-alpha.7",
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",
@@ -11,6 +11,7 @@
11
11
  },
12
12
  "repository": {
13
13
  "type": "git",
14
+ "url": "https://github.com/scaleway/scaleway-sdk-js",
14
15
  "directory": "packages/configuration-loader"
15
16
  },
16
17
  "engines": {
@@ -20,5 +21,5 @@
20
21
  "devDependencies": {
21
22
  "@types/node": "^17.0.45"
22
23
  },
23
- "gitHead": "62e890360bc08c952258d947195c669b8eff8bf5"
24
+ "gitHead": "d0dccb15478b4b9580c5696920fc210b3ab18e98"
24
25
  }