@7n/test 0.4.0 → 0.4.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 +12 -0
- package/package.json +4 -3
- /package/bin/{n.js → 7n-test.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.2] - 2026-06-26
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Додано бінарний аліас `test` — тепер `npx @7n/test .` працює напряму (npx використовує частину після `/` у скоупному пакеті).
|
|
8
|
+
|
|
9
|
+
## [0.4.1] - 2026-06-26
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Перейменовано бінарник з `n` на `7n-test`: тепер `npx 7n-test .` і `npx 7n-test@latest .` працюють без `--package=` флагу.
|
|
14
|
+
|
|
3
15
|
## [0.4.0] - 2026-06-26
|
|
4
16
|
|
|
5
17
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@7n/test",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "CLI-утиліта @7n/test",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"7n",
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"url": "git+https://github.com/nitra/7n-test.git"
|
|
19
19
|
},
|
|
20
20
|
"bin": {
|
|
21
|
-
"
|
|
21
|
+
"test": "bin/7n-test.js",
|
|
22
|
+
"7n-test": "bin/7n-test.js"
|
|
22
23
|
},
|
|
23
24
|
"files": [
|
|
24
25
|
"bin",
|
|
@@ -35,7 +36,7 @@
|
|
|
35
36
|
"access": "public"
|
|
36
37
|
},
|
|
37
38
|
"scripts": {
|
|
38
|
-
"start": "bun ./bin/
|
|
39
|
+
"start": "bun ./bin/7n-test.js",
|
|
39
40
|
"test": "vitest run"
|
|
40
41
|
},
|
|
41
42
|
"dependencies": {
|
/package/bin/{n.js → 7n-test.js}
RENAMED
|
File without changes
|