@plasius/sharedassets 1.0.0 → 1.0.2

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
@@ -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.2] - 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.1] - 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/sharedassets/compare/v1.0.0...HEAD
79
+ [Unreleased]: https://github.com/Plasius-LTD/sharedassets/compare/v1.0.2...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.0]: https://github.com/Plasius-LTD/sharedassets/releases/tag/v1.0.0
95
+ [1.0.1]: https://github.com/Plasius-LTD/sharedassets/releases/tag/v1.0.1
96
+ [1.0.2]: https://github.com/Plasius-LTD/sharedassets/releases/tag/v1.0.2
@@ -0,0 +1,4 @@
1
+ # ADR Index
2
+
3
+ - [ADR-0001: Standalone @plasius/sharedassets Package Scope](./adr-0001-sharedassets-package-scope.md)
4
+ - [ADR-0002: Public Repository Governance Baseline](./adr-0002-public-repo-governance.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasius/sharedassets",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Plasius shared asset library, allowing devs to utilise common components",
5
5
  "keywords": [
6
6
  "Components",
@@ -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": "depcheck --skip-missing=true",
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 && rsync -av --include '*/' --include '*.module.css' --include '*.svg' --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,17 +39,16 @@
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.38.0",
41
- "@typescript-eslint/parser": "^8.38.0",
42
- "@vitest/coverage-v8": "^3.2.4",
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
- "depcheck": "^1.4.7",
45
- "eslint": "^9.33.0",
46
- "npm-run-all": "^4.1.5",
46
+ "eslint": "^10.0.1",
47
+ "npm-run-all": "^1.1.3",
47
48
  "react": "^19.1.0",
48
49
  "tsx": "^4.20.3",
49
50
  "typescript": "^5.8.3",
50
- "vitest": "^3.2.4",
51
+ "vitest": "^4.0.18",
51
52
  "zod": "^4.0.17"
52
53
  },
53
54
  "sideEffects": [
@@ -98,5 +99,8 @@
98
99
  ],
99
100
  "engines": {
100
101
  "node": ">=22.12"
102
+ },
103
+ "overrides": {
104
+ "minimatch": "^10.2.1"
101
105
  }
102
106
  }