@scaleway/configuration-loader 1.0.10 → 1.0.12

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.
@@ -1,8 +1,8 @@
1
1
 
2
- > @scaleway/configuration-loader@1.0.9 build /home/runner/work/scaleway-sdk-js/scaleway-sdk-js/packages/configuration-loader
2
+ > @scaleway/configuration-loader@1.0.11 build /home/runner/work/scaleway-sdk-js/scaleway-sdk-js/packages/configuration-loader
3
3
  > vite build --config ../../vite.config.ts && pnpm run type:generate
4
4
 
5
- vite v6.3.6 building SSR bundle for production...
5
+ vite v6.4.1 building SSR bundle for production...
6
6
  transforming...
7
7
  ✓ 5 modules transformed.
8
8
  rendering chunks...
@@ -16,8 +16,8 @@ rendering chunks...
16
16
  dist/yml-loader.cjs 1.40 kB
17
17
  dist/path-resolver.cjs 1.47 kB
18
18
  dist/config-loader.cjs 2.20 kB
19
- ✓ built in 127ms
19
+ ✓ built in 121ms
20
20
 
21
- > @scaleway/configuration-loader@1.0.9 type:generate /home/runner/work/scaleway-sdk-js/scaleway-sdk-js/packages/configuration-loader
21
+ > @scaleway/configuration-loader@1.0.11 type:generate /home/runner/work/scaleway-sdk-js/scaleway-sdk-js/packages/configuration-loader
22
22
  > tsc --declaration -p tsconfig.build.json
23
23
 
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
+ ## 1.0.12 (2025-10-29)
7
+
8
+ **Note:** Version bump only for package @scaleway/configuration-loader
9
+
10
+ ## 1.0.11 (2025-10-22)
11
+
12
+ **Note:** Version bump only for package @scaleway/configuration-loader
13
+
6
14
  ## 1.0.10 (2025-09-10)
7
15
 
8
16
  **Note:** Version bump only for package @scaleway/configuration-loader
@@ -1,4 +1,4 @@
1
- import type { AllProfilesFromFileParams, Profile, ProfileFromFileParams } from './types';
1
+ import type { AllProfilesFromFileParams, Profile, ProfileFromFileParams } from './types.js';
2
2
  /**
3
3
  * Loads profile from environment values.
4
4
  *
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export { loadAllProfilesFromConfigurationFile, loadProfileFromConfigurationFile, loadProfileFromEnvironmentValues, } from './config-loader';
2
- export type { AllProfilesFromFileParams, Profile, ProfileFromFileParams, } from './types';
1
+ export { loadAllProfilesFromConfigurationFile, loadProfileFromConfigurationFile, loadProfileFromEnvironmentValues, } from './config-loader.js';
2
+ export type { AllProfilesFromFileParams, Profile, ProfileFromFileParams, } from './types.js';
@@ -1,4 +1,4 @@
1
- import type { ConfigurationType } from './types';
1
+ import type { ConfigurationType } from './types.js';
2
2
  /**
3
3
  * Converts YAML to configuration map.
4
4
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/configuration-loader",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Load configuration via file or environment for NodeJS.",
6
6
  "publishConfig": {