@bgord/bun 1.14.6 → 1.14.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bgord/bun",
3
- "version": "1.14.6",
3
+ "version": "1.14.7",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "author": "Bartosz Gordon",
@@ -6,8 +6,8 @@ import type {
6
6
 
7
7
  export class EnvironmentLoaderProcessAdapter<T extends object> implements EnvironmentLoaderPort<T> {
8
8
  constructor(
9
- private readonly config: EnvironmentLoaderConfig<T>,
10
9
  private env: NodeJS.ProcessEnv,
10
+ private readonly config: EnvironmentLoaderConfig<T>,
11
11
  ) {}
12
12
 
13
13
  async load(): Promise<Readonly<EnvironmentResultType<T>>> {