@scaleway/configuration-loader 2.4.5 → 2.6.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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - chore(engines): remove node engines (#3336)
8
+
9
+ ## 2.5.0
10
+
11
+ ### Minor Changes
12
+
13
+ - chore(lerna): remove lerna and use pnpm auto release repo pkg (#3174)
14
+
15
+ - fix(release): run by commit and github release cli (#3185)
16
+
3
17
  All notable changes to this project will be documented in this file.
4
18
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/configuration-loader",
3
- "version": "2.4.5",
3
+ "version": "2.6.0",
4
4
  "description": "Load configuration via file or environment for NodeJS.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -19,11 +19,8 @@
19
19
  "access": "public"
20
20
  },
21
21
  "devDependencies": {
22
- "@types/node": "20.19.43",
23
- "@repo/configs": "^0.1.1"
24
- },
25
- "engines": {
26
- "node": ">=20.20.2"
22
+ "@repo/configs": "^0.1.1",
23
+ "@types/node": "26.4.1"
27
24
  },
28
25
  "scripts": {
29
26
  "typecheck": "tsc --noEmit",
@@ -1,18 +0,0 @@
1
- $ vite build --config ../../vite.config.ts && pnpm run type:generate && pnpm run copy-test-fixtures
2
- vite v8.1.5 building ssr environment for production...
3
- 
4
- rendering chunks...
5
- computing gzip size...
6
- dist/types.js 0.00 kB │ gzip: 0.02 kB
7
- dist/index.js 0.51 kB │ gzip: 0.16 kB
8
- dist/env.js 0.94 kB │ gzip: 0.41 kB
9
- dist/path-resolver.js 0.96 kB │ gzip: 0.41 kB
10
- dist/__tests__/path-resolver.test.js 1.50 kB │ gzip: 0.57 kB
11
- dist/__tests__/yml-loader.test.js 2.63 kB │ gzip: 0.81 kB
12
- dist/yml-loader.js 2.78 kB │ gzip: 1.09 kB
13
- dist/__tests__/config-loader.test.js 3.05 kB │ gzip: 1.03 kB
14
- dist/config-loader.js 4.34 kB │ gzip: 0.95 kB
15
-
16
- ✓ built in 38ms
17
- $ tsc --declaration -p tsconfig.build.json
18
- $ mkdir -p dist/__tests__/data && cp src/__tests__/data/*.yaml dist/__tests__/data/
package/biome.jsonc DELETED
@@ -1,13 +0,0 @@
1
- {
2
- "$schema": "../../node_modules/@biomejs/biome/configuration_schema.json",
3
- "assist": {
4
- "actions": {
5
- "source": {
6
- "organizeImports": "on",
7
- },
8
- },
9
- "enabled": true,
10
- },
11
- "extends": "//",
12
- "root": false,
13
- }