@skilly-hand/skilly-hand 0.13.0 → 0.14.0
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
|
@@ -4,6 +4,36 @@ All notable changes to this project are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
### Added
|
|
8
|
+
- _None._
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- _None._
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- _None._
|
|
15
|
+
|
|
16
|
+
### Removed
|
|
17
|
+
- _None._
|
|
18
|
+
|
|
19
|
+
## [0.14.0] - 2026-04-06
|
|
20
|
+
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.14.0)
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- _None._
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- _None._
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- _None._
|
|
30
|
+
|
|
31
|
+
### Removed
|
|
32
|
+
- _None._
|
|
33
|
+
|
|
34
|
+
## [0.13.0] - 2026-04-05
|
|
35
|
+
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.13.0)
|
|
36
|
+
|
|
7
37
|
### Added
|
|
8
38
|
- Figma plugin detection support
|
|
9
39
|
- New test fixtures for figma-plugin projects
|
|
@@ -18,8 +48,6 @@ All notable changes to this project are documented in this file.
|
|
|
18
48
|
|
|
19
49
|
### Removed
|
|
20
50
|
- _None._
|
|
21
|
-
|
|
22
|
-
## [0.12.0] - 2026-04-05
|
|
23
51
|
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.12.0)
|
|
24
52
|
|
|
25
53
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skilly-hand/skilly-hand",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"license": "CC-BY-NC-4.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -31,10 +31,12 @@
|
|
|
31
31
|
"test": "node --test tests/*.test.js",
|
|
32
32
|
"security:check": "node ./scripts/security-check.mjs",
|
|
33
33
|
"verify:packlist": "node ./scripts/verify-packlist.mjs",
|
|
34
|
-
"verify:
|
|
34
|
+
"verify:versions": "node ./scripts/verify-versions.mjs",
|
|
35
|
+
"verify:publish": "npm run verify:versions && npm run security:check && npm run catalog:check && npm test && npm run verify:packlist",
|
|
35
36
|
"publish:prepare": "npm run verify:publish && npm pack --dry-run --json",
|
|
36
37
|
"publish:otp": "node ./scripts/publish-with-otp.mjs",
|
|
37
38
|
"publish:next": "node ./scripts/publish-with-otp.mjs --tag next",
|
|
39
|
+
"setup:hooks": "node ./scripts/setup-hooks.mjs",
|
|
38
40
|
"prepublishOnly": "npm run verify:publish",
|
|
39
41
|
"version": "node ./scripts/release-changelog.mjs",
|
|
40
42
|
"changelog:release": "node ./scripts/release-changelog.mjs",
|