@scaleway/configuration-loader 0.1.0-beta.7 → 1.0.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/CHANGELOG.md +6 -0
- package/dist/index.cjs +2 -2
- package/dist/yml-loader.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
## 1.0.0 (2023-02-21)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- prepare v1 release ([#454](https://github.com/scaleway/scaleway-sdk-js/issues/454)) ([57bc014](https://github.com/scaleway/scaleway-sdk-js/commit/57bc014556338ba9fa7eca2a2d4179f5ff8383be))
|
|
11
|
+
|
|
6
12
|
## 0.1.0-beta.7 (2023-01-27)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/dist/index.cjs
CHANGED
|
@@ -77,9 +77,9 @@ const DETECT_SECTION_REGEX = /^\s*([^]+):\s*$/;
|
|
|
77
77
|
const DETECT_ITEM_REGEX = /^\s*(.+?)\s*:\s*(.+?)\s*$/;
|
|
78
78
|
|
|
79
79
|
/**
|
|
80
|
-
* Converts
|
|
80
|
+
* Converts YAML to configuration map.
|
|
81
81
|
*
|
|
82
|
-
* @param input -
|
|
82
|
+
* @param input - YAML string
|
|
83
83
|
* @returns The configuration map
|
|
84
84
|
*
|
|
85
85
|
* @internal
|
package/dist/yml-loader.js
CHANGED
|
@@ -5,9 +5,9 @@ const DETECT_SECTION_REGEX = /^\s*([^]+):\s*$/;
|
|
|
5
5
|
const DETECT_ITEM_REGEX = /^\s*(.+?)\s*:\s*(.+?)\s*$/;
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
|
-
* Converts
|
|
8
|
+
* Converts YAML to configuration map.
|
|
9
9
|
*
|
|
10
|
-
* @param input -
|
|
10
|
+
* @param input - YAML string
|
|
11
11
|
* @returns The configuration map
|
|
12
12
|
*
|
|
13
13
|
* @internal
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/configuration-loader",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
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": "^18.11.18"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "53da2037e927cabe7f148ea2555a8ad590a6a375"
|
|
25
25
|
}
|