@plasius/environment 1.0.3 → 1.0.5
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 +31 -1
- package/docs/adrs/index.md +4 -0
- package/package.json +18 -13
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,34 @@ 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.5] - 2026-02-28
|
|
24
|
+
|
|
25
|
+
- **Added**
|
|
26
|
+
- (placeholder)
|
|
27
|
+
|
|
28
|
+
- **Changed**
|
|
29
|
+
- (placeholder)
|
|
30
|
+
|
|
31
|
+
- **Fixed**
|
|
32
|
+
- (placeholder)
|
|
33
|
+
|
|
34
|
+
- **Security**
|
|
35
|
+
- (placeholder)
|
|
36
|
+
|
|
37
|
+
## [1.0.4] - 2026-02-22
|
|
38
|
+
|
|
11
39
|
- **Added**
|
|
12
40
|
- (placeholder)
|
|
13
41
|
|
|
@@ -48,7 +76,7 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
48
76
|
|
|
49
77
|
---
|
|
50
78
|
|
|
51
|
-
[Unreleased]: https://github.com/Plasius-LTD/environment/compare/v1.0.
|
|
79
|
+
[Unreleased]: https://github.com/Plasius-LTD/environment/compare/v1.0.5...HEAD
|
|
52
80
|
|
|
53
81
|
## [1.0.0] - 2026-02-11
|
|
54
82
|
|
|
@@ -64,3 +92,5 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
64
92
|
- **Security**
|
|
65
93
|
- (placeholder)
|
|
66
94
|
[1.0.3]: https://github.com/Plasius-LTD/environment/releases/tag/v1.0.3
|
|
95
|
+
[1.0.4]: https://github.com/Plasius-LTD/environment/releases/tag/v1.0.4
|
|
96
|
+
[1.0.5]: https://github.com/Plasius-LTD/environment/releases/tag/v1.0.5
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/environment",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Plasius Environment provider/context",
|
|
5
5
|
"keywords": [
|
|
6
6
|
".env",
|
|
@@ -20,13 +20,15 @@
|
|
|
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",
|
|
27
27
|
"build:cjs": "tsc -p tsconfig.json --module commonjs --moduleResolution node --outDir dist-cjs --tsBuildInfoFile dist-cjs/tsconfig.tsbuildinfo --listEmittedFiles && rsync -av --include '*/' --include '*.module.css' --exclude '*' src/ dist-cjs/ || true",
|
|
28
28
|
"lint": "eslint .",
|
|
29
|
-
"prepare": "npm run build"
|
|
29
|
+
"prepare": "npm run build",
|
|
30
|
+
"pack:check": "node scripts/verify-public-package.cjs",
|
|
31
|
+
"prepublishOnly": "npm run build && npm run pack:check"
|
|
30
32
|
},
|
|
31
33
|
"author": "Plasius LTD <development@plasius.co.uk>",
|
|
32
34
|
"license": "MIT",
|
|
@@ -37,19 +39,19 @@
|
|
|
37
39
|
"@testing-library/react": "^16.3.0",
|
|
38
40
|
"@types/react": "^19.1.8",
|
|
39
41
|
"@types/uuid": "^10.0.0",
|
|
40
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
41
|
-
"@typescript-eslint/parser": "^8.
|
|
42
|
-
"@vitest/coverage-v8": "^
|
|
42
|
+
"@typescript-eslint/eslint-plugin": "^8.56.0",
|
|
43
|
+
"@typescript-eslint/parser": "^8.56.0",
|
|
44
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
43
45
|
"ajv": "^6.12.6",
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"react": "
|
|
46
|
+
"eslint": "^10.0.1",
|
|
47
|
+
"npm-run-all": "^1.1.3",
|
|
48
|
+
"react": "19.2.4",
|
|
49
|
+
"react-dom": "19.2.4",
|
|
50
|
+
"rimraf": "^6.0.1",
|
|
48
51
|
"tsx": "^4.20.3",
|
|
49
52
|
"typescript": "^5.8.3",
|
|
50
|
-
"vitest": "^
|
|
51
|
-
"zod": "^4.0.17"
|
|
52
|
-
"rimraf": "^6.0.1"
|
|
53
|
+
"vitest": "^4.0.18",
|
|
54
|
+
"zod": "^4.0.17"
|
|
53
55
|
},
|
|
54
56
|
"sideEffects": [
|
|
55
57
|
"*.css"
|
|
@@ -99,5 +101,8 @@
|
|
|
99
101
|
],
|
|
100
102
|
"engines": {
|
|
101
103
|
"node": ">=22.12"
|
|
104
|
+
},
|
|
105
|
+
"overrides": {
|
|
106
|
+
"minimatch": "^10.2.1"
|
|
102
107
|
}
|
|
103
108
|
}
|