@plasius/environment 1.0.3 → 1.0.4
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 +16 -1
- package/docs/adrs/index.md +4 -0
- package/package.json +15 -12
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,20 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
8
8
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
|
+
- **Added**
|
|
12
|
+
- (placeholder)
|
|
13
|
+
|
|
14
|
+
- **Changed**
|
|
15
|
+
- (placeholder)
|
|
16
|
+
|
|
17
|
+
- **Fixed**
|
|
18
|
+
- (placeholder)
|
|
19
|
+
|
|
20
|
+
- **Security**
|
|
21
|
+
- (placeholder)
|
|
22
|
+
|
|
23
|
+
## [1.0.4] - 2026-02-22
|
|
24
|
+
|
|
11
25
|
- **Added**
|
|
12
26
|
- (placeholder)
|
|
13
27
|
|
|
@@ -48,7 +62,7 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
48
62
|
|
|
49
63
|
---
|
|
50
64
|
|
|
51
|
-
[Unreleased]: https://github.com/Plasius-LTD/environment/compare/v1.0.
|
|
65
|
+
[Unreleased]: https://github.com/Plasius-LTD/environment/compare/v1.0.4...HEAD
|
|
52
66
|
|
|
53
67
|
## [1.0.0] - 2026-02-11
|
|
54
68
|
|
|
@@ -64,3 +78,4 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
64
78
|
- **Security**
|
|
65
79
|
- (placeholder)
|
|
66
80
|
[1.0.3]: https://github.com/Plasius-LTD/environment/releases/tag/v1.0.3
|
|
81
|
+
[1.0.4]: https://github.com/Plasius-LTD/environment/releases/tag/v1.0.4
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/environment",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Plasius Environment provider/context",
|
|
5
5
|
"keywords": [
|
|
6
6
|
".env",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"reset:clean": "rm -rf node_modules package-lock.json && npm run clean",
|
|
21
21
|
"audit:ts": "tsc --noEmit --pretty",
|
|
22
22
|
"audit:eslint": "eslint \"{src,apps,packages}/**/*.{ts,tsx}\" --max-warnings=0 --ext .ts,.tsx",
|
|
23
|
-
"audit:deps": "
|
|
23
|
+
"audit:deps": "npm ls --all --omit=optional --omit=peer > /dev/null 2>&1 || true",
|
|
24
24
|
"audit:npm": "npm audit --audit-level=moderate || true",
|
|
25
25
|
"audit:test": "vitest run --coverage",
|
|
26
26
|
"audit:all": "npm-run-all -l audit:ts audit:eslint audit:deps audit:npm audit:test",
|
|
@@ -37,19 +37,19 @@
|
|
|
37
37
|
"@testing-library/react": "^16.3.0",
|
|
38
38
|
"@types/react": "^19.1.8",
|
|
39
39
|
"@types/uuid": "^10.0.0",
|
|
40
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
41
|
-
"@typescript-eslint/parser": "^8.
|
|
42
|
-
"@vitest/coverage-v8": "^
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
41
|
+
"@typescript-eslint/parser": "^8.56.0",
|
|
42
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
43
43
|
"ajv": "^6.12.6",
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"react": "
|
|
44
|
+
"eslint": "^10.0.1",
|
|
45
|
+
"npm-run-all": "^1.1.3",
|
|
46
|
+
"react": "19.2.4",
|
|
47
|
+
"react-dom": "19.2.4",
|
|
48
|
+
"rimraf": "^6.0.1",
|
|
48
49
|
"tsx": "^4.20.3",
|
|
49
50
|
"typescript": "^5.8.3",
|
|
50
|
-
"vitest": "^
|
|
51
|
-
"zod": "^4.0.17"
|
|
52
|
-
"rimraf": "^6.0.1"
|
|
51
|
+
"vitest": "^4.0.18",
|
|
52
|
+
"zod": "^4.0.17"
|
|
53
53
|
},
|
|
54
54
|
"sideEffects": [
|
|
55
55
|
"*.css"
|
|
@@ -99,5 +99,8 @@
|
|
|
99
99
|
],
|
|
100
100
|
"engines": {
|
|
101
101
|
"node": ">=22.12"
|
|
102
|
+
},
|
|
103
|
+
"overrides": {
|
|
104
|
+
"minimatch": "^10.2.1"
|
|
102
105
|
}
|
|
103
106
|
}
|