@plasius/sharedassets 1.0.1 → 1.0.3
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/package.json +10 -5
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.3] - 2026-03-01
|
|
24
|
+
|
|
25
|
+
- **Added**
|
|
26
|
+
- (placeholder)
|
|
27
|
+
|
|
28
|
+
- **Changed**
|
|
29
|
+
- (placeholder)
|
|
30
|
+
|
|
31
|
+
- **Fixed**
|
|
32
|
+
- (placeholder)
|
|
33
|
+
|
|
34
|
+
- **Security**
|
|
35
|
+
- (placeholder)
|
|
36
|
+
|
|
37
|
+
## [1.0.2] - 2026-02-28
|
|
38
|
+
|
|
11
39
|
- **Added**
|
|
12
40
|
- (placeholder)
|
|
13
41
|
|
|
@@ -62,7 +90,7 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
62
90
|
|
|
63
91
|
---
|
|
64
92
|
|
|
65
|
-
[Unreleased]: https://github.com/Plasius-LTD/sharedassets/compare/v1.0.
|
|
93
|
+
[Unreleased]: https://github.com/Plasius-LTD/sharedassets/compare/v1.0.3...HEAD
|
|
66
94
|
|
|
67
95
|
## [1.0.0] - 2026-02-11
|
|
68
96
|
|
|
@@ -79,3 +107,5 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
|
|
|
79
107
|
- (placeholder)
|
|
80
108
|
[1.0.0]: https://github.com/Plasius-LTD/sharedassets/releases/tag/v1.0.0
|
|
81
109
|
[1.0.1]: https://github.com/Plasius-LTD/sharedassets/releases/tag/v1.0.1
|
|
110
|
+
[1.0.2]: https://github.com/Plasius-LTD/sharedassets/releases/tag/v1.0.2
|
|
111
|
+
[1.0.3]: https://github.com/Plasius-LTD/sharedassets/releases/tag/v1.0.3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/sharedassets",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Plasius shared asset library, allowing devs to utilise common components",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Components",
|
|
@@ -14,19 +14,22 @@
|
|
|
14
14
|
"build": "tsc --build && rsync -av --include '*/' --include '*.module.css' --include '*.svg' --exclude '*' src/ dist/ || true && npm run build:cjs",
|
|
15
15
|
"test": "vitest run",
|
|
16
16
|
"test:watch": "vitest",
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
17
18
|
"test:coverage": "vitest run --coverage",
|
|
18
19
|
"test:coverage:watch": "vitest --coverage",
|
|
19
20
|
"clean": "rimraf dist-cjs dist tsconfig.tsbuildinfo",
|
|
20
21
|
"reset:clean": "rm -rf node_modules package-lock.json && npm run clean",
|
|
21
22
|
"audit:ts": "tsc --noEmit --pretty",
|
|
22
|
-
"audit:eslint": "eslint
|
|
23
|
+
"audit:eslint": "eslint . --max-warnings=0",
|
|
23
24
|
"audit:deps": "npm ls --all --omit=optional --omit=peer > /dev/null 2>&1 || true",
|
|
24
|
-
"audit:npm": "npm audit --audit-level=
|
|
25
|
+
"audit:npm": "npm audit --audit-level=high --omit=dev",
|
|
25
26
|
"audit:test": "vitest run --coverage",
|
|
26
27
|
"audit:all": "npm-run-all -l audit:ts audit:eslint audit:deps audit:npm audit:test",
|
|
27
28
|
"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
|
-
"lint": "eslint .",
|
|
29
|
-
"prepare": "npm run build"
|
|
29
|
+
"lint": "eslint . --max-warnings=0",
|
|
30
|
+
"prepare": "npm run build",
|
|
31
|
+
"pack:check": "node scripts/verify-public-package.cjs",
|
|
32
|
+
"prepublishOnly": "npm run build && npm run pack:check"
|
|
30
33
|
},
|
|
31
34
|
"author": "Plasius LTD <development@plasius.co.uk>",
|
|
32
35
|
"license": "MIT",
|
|
@@ -34,6 +37,7 @@
|
|
|
34
37
|
"react": "^19.1.0"
|
|
35
38
|
},
|
|
36
39
|
"devDependencies": {
|
|
40
|
+
"@eslint/js": "^10.0.1",
|
|
37
41
|
"@testing-library/react": "^16.3.0",
|
|
38
42
|
"@types/react": "^19.1.8",
|
|
39
43
|
"@types/uuid": "^10.0.0",
|
|
@@ -42,6 +46,7 @@
|
|
|
42
46
|
"@vitest/coverage-v8": "^4.0.18",
|
|
43
47
|
"ajv": "^6.12.6",
|
|
44
48
|
"eslint": "^10.0.1",
|
|
49
|
+
"globals": "^17.3.0",
|
|
45
50
|
"npm-run-all": "^1.1.3",
|
|
46
51
|
"react": "^19.1.0",
|
|
47
52
|
"tsx": "^4.20.3",
|