@feasibleone/blong-chain 1.8.0 → 1.8.1
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 +7 -0
- package/dist/package.json +4 -4
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.8.1](https://github.com/feasibleone/blong/compare/blong-chain-v1.8.0...blong-chain-v1.8.1) (2026-05-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* improve testing ([2b1d862](https://github.com/feasibleone/blong/commit/2b1d862fda71ed7910bc99f4bbbe11ef17be098c))
|
|
9
|
+
|
|
3
10
|
## [1.8.0](https://github.com/feasibleone/blong/compare/blong-chain-v1.7.0...blong-chain-v1.8.0) (2026-05-19)
|
|
4
11
|
|
|
5
12
|
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feasibleone/blong-chain",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"description": "Parallel testing with automatic dependencies",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blong",
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "heft build --clean",
|
|
19
|
-
"ci-all": "npm run ci-
|
|
19
|
+
"ci-all": "npm run ci-test && npm run ci-examples",
|
|
20
20
|
"ci-examples": "npm run test:examples",
|
|
21
21
|
"ci-lint": "blong-dev lint",
|
|
22
22
|
"ci-publish": "node ../../common/scripts/install-run-rush-pnpm.js publish --access public --provenance",
|
|
23
|
-
"ci-
|
|
23
|
+
"ci-test": "npm run test;./test-examples-ci.sh",
|
|
24
24
|
"test": "tap *.test.ts",
|
|
25
25
|
"test:examples": "node --test dist/examples/*.test.js"
|
|
26
26
|
},
|
|
@@ -34,6 +34,6 @@
|
|
|
34
34
|
"@rushstack/heft-typescript-plugin": "^1.3.1",
|
|
35
35
|
"@types/node": "^24",
|
|
36
36
|
"tap": "^21.6.3",
|
|
37
|
-
"typescript": "^
|
|
37
|
+
"typescript": "^6.0.3"
|
|
38
38
|
}
|
|
39
39
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feasibleone/blong-chain",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.1",
|
|
4
4
|
"description": "Parallel testing with automatic dependencies",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blong",
|
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
"@rushstack/heft-typescript-plugin": "^1.3.1",
|
|
24
24
|
"@types/node": "^24",
|
|
25
25
|
"tap": "^21.6.3",
|
|
26
|
-
"typescript": "^
|
|
27
|
-
"@feasibleone/blong-dev": "1.0.
|
|
26
|
+
"typescript": "^6.0.3",
|
|
27
|
+
"@feasibleone/blong-dev": "1.0.2"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build": "heft build --clean",
|
|
31
|
-
"ci-all": "npm run ci-
|
|
31
|
+
"ci-all": "npm run ci-test && npm run ci-examples",
|
|
32
32
|
"ci-examples": "npm run test:examples",
|
|
33
33
|
"ci-lint": "blong-dev lint",
|
|
34
34
|
"ci-publish": "node ../../common/scripts/install-run-rush-pnpm.js publish --access public --provenance",
|
|
35
|
-
"ci-
|
|
35
|
+
"ci-test": "npm run test;./test-examples-ci.sh",
|
|
36
36
|
"test": "tap *.test.ts",
|
|
37
37
|
"test:examples": "node --test dist/examples/*.test.js"
|
|
38
38
|
}
|