@plasius/hexagons 1.0.6 → 1.0.7

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -1
  2. package/package.json +7 -4
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.7] - 2026-03-01
24
+
11
25
  - **Added**
12
26
  - (placeholder)
13
27
 
@@ -90,7 +104,7 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
90
104
 
91
105
  ---
92
106
 
93
- [Unreleased]: https://github.com/Plasius-LTD/hexagons/compare/v1.0.6...HEAD
107
+ [Unreleased]: https://github.com/Plasius-LTD/hexagons/compare/v1.0.7...HEAD
94
108
 
95
109
  ## [1.0.0] - 2026-02-11
96
110
 
@@ -109,3 +123,4 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
109
123
  [1.0.4]: https://github.com/Plasius-LTD/hexagons/releases/tag/v1.0.4
110
124
  [1.0.5]: https://github.com/Plasius-LTD/hexagons/releases/tag/v1.0.5
111
125
  [1.0.6]: https://github.com/Plasius-LTD/hexagons/releases/tag/v1.0.6
126
+ [1.0.7]: https://github.com/Plasius-LTD/hexagons/releases/tag/v1.0.7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasius/hexagons",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "main": "./dist-cjs/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "type": "module",
@@ -10,18 +10,19 @@
10
10
  "build": "tsc --build --listEmittedFiles && rsync -av --include '*/' --include '*.module.css' --exclude '*' src/ dist/ || true && npm run build:cjs",
11
11
  "test": "vitest run",
12
12
  "test:watch": "vitest",
13
+ "typecheck": "tsc --noEmit",
13
14
  "test:coverage": "vitest run --coverage",
14
15
  "test:coverage:watch": "vitest --coverage",
15
16
  "clean": "rimraf dist-cjs dist tsconfig.tsbuildinfo",
16
17
  "reset:clean": "rm -rf node_modules package-lock.json && npm run clean",
17
18
  "audit:ts": "tsc --noEmit --pretty",
18
- "audit:eslint": "eslint \"{src,apps,packages}/**/*.{ts,tsx}\" --max-warnings=0 --ext .ts,.tsx",
19
+ "audit:eslint": "eslint . --max-warnings=0",
19
20
  "audit:deps": "npm ls --all --omit=optional --omit=peer > /dev/null 2>&1 || true",
20
- "audit:npm": "npm audit --audit-level=moderate || true",
21
+ "audit:npm": "npm audit --audit-level=high --omit=dev",
21
22
  "audit:test": "vitest run --coverage",
22
23
  "audit:all": "npm-run-all -l audit:ts audit:eslint audit:deps audit:npm audit:test",
23
24
  "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",
24
- "lint": "eslint .",
25
+ "lint": "eslint . --max-warnings=0",
25
26
  "prepare": "npm run build",
26
27
  "pack:check": "node scripts/verify-public-package.cjs",
27
28
  "prepublishOnly": "npm run build && npm run pack:check"
@@ -38,6 +39,7 @@
38
39
  "react": "19.1.0"
39
40
  },
40
41
  "devDependencies": {
42
+ "@eslint/js": "^10.0.1",
41
43
  "@testing-library/react": "^16.3.0",
42
44
  "@types/react": "^19.1.8",
43
45
  "@types/uuid": "^10.0.0",
@@ -46,6 +48,7 @@
46
48
  "@vitest/coverage-v8": "^4.0.18",
47
49
  "ajv": "^6.12.6",
48
50
  "eslint": "^10.0.1",
51
+ "globals": "^17.3.0",
49
52
  "npm-run-all": "^1.1.3",
50
53
  "react": "19.1.0",
51
54
  "react-dom": "19.1.0",