@feasibleone/blong-chain 1.2.1 → 1.2.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 +14 -0
- package/dist/package.json +14 -14
- package/package.json +10 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.2.3](https://github.com/feasibleone/blong/compare/blong-chain-v1.2.2...blong-chain-v1.2.3) (2026-03-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* remove unused exports field from package.json ([a846ac0](https://github.com/feasibleone/blong/commit/a846ac0bb283cabeead1eee05e9e5a47ac3961af))
|
|
9
|
+
|
|
10
|
+
## [1.2.2](https://github.com/feasibleone/blong/compare/blong-chain-v1.2.1...blong-chain-v1.2.2) (2026-03-02)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* update rushstack dependencies across multiple packages to latest versions ([1d9f043](https://github.com/feasibleone/blong/commit/1d9f043899593b55cafc99bef319791ba7b55ace))
|
|
16
|
+
|
|
3
17
|
## [1.2.1](https://github.com/feasibleone/blong/compare/blong-chain-v1.2.0...blong-chain-v1.2.1) (2026-03-02)
|
|
4
18
|
|
|
5
19
|
|
package/dist/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feasibleone/blong-chain",
|
|
3
|
+
"version": "1.2.2",
|
|
3
4
|
"description": "Parallel testing with automatic dependencies",
|
|
4
5
|
"keywords": [
|
|
5
6
|
"blong",
|
|
@@ -9,28 +10,27 @@
|
|
|
9
10
|
"repository": {
|
|
10
11
|
"url": "git+https://github.com/feasibleone/blong.git"
|
|
11
12
|
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": "./dist/index.js"
|
|
16
|
+
},
|
|
12
17
|
"scripts": {
|
|
13
18
|
"build": "heft build --clean",
|
|
14
|
-
"test": "tap *.test.ts",
|
|
15
|
-
"test:examples": "node --test dist/examples/*.test.js",
|
|
16
|
-
"ci-unit": "npm run test;./test-examples-ci.sh",
|
|
17
|
-
"ci-examples": "npm run test:examples",
|
|
18
19
|
"ci-all": "npm run ci-unit && npm run ci-examples",
|
|
19
|
-
"ci-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
20
|
+
"ci-examples": "npm run test:examples",
|
|
21
|
+
"ci-publish": "node ../../common/scripts/install-run-rush-pnpm.js publish --access public --provenance",
|
|
22
|
+
"ci-unit": "npm run test;./test-examples-ci.sh",
|
|
23
|
+
"test": "tap *.test.ts",
|
|
24
|
+
"test:examples": "node --test dist/examples/*.test.js"
|
|
23
25
|
},
|
|
24
|
-
"type": "module",
|
|
25
|
-
"version": "1.2.1",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"p-queue": "^9.1.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@rushstack/eslint-config": "^4.
|
|
31
|
-
"@rushstack/heft": "^1.
|
|
32
|
-
"@rushstack/heft-lint-plugin": "^1.
|
|
33
|
-
"@rushstack/heft-typescript-plugin": "^1.1
|
|
30
|
+
"@rushstack/eslint-config": "^4.6.4",
|
|
31
|
+
"@rushstack/heft": "^1.2.6",
|
|
32
|
+
"@rushstack/heft-lint-plugin": "^1.2.6",
|
|
33
|
+
"@rushstack/heft-typescript-plugin": "^1.3.1",
|
|
34
34
|
"@types/node": "^24",
|
|
35
35
|
"eslint": "~9.39.2",
|
|
36
36
|
"tap": "^21.6.2",
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feasibleone/blong-chain",
|
|
3
|
+
"version": "1.2.3",
|
|
3
4
|
"description": "Parallel testing with automatic dependencies",
|
|
4
5
|
"keywords": [
|
|
5
6
|
"blong",
|
|
@@ -9,19 +10,15 @@
|
|
|
9
10
|
"repository": {
|
|
10
11
|
"url": "git+https://github.com/feasibleone/blong.git"
|
|
11
12
|
},
|
|
12
|
-
"exports": {
|
|
13
|
-
".": "./dist/index.js"
|
|
14
|
-
},
|
|
15
13
|
"type": "module",
|
|
16
|
-
"version": "1.2.1",
|
|
17
14
|
"dependencies": {
|
|
18
15
|
"p-queue": "^9.1.0"
|
|
19
16
|
},
|
|
20
17
|
"devDependencies": {
|
|
21
|
-
"@rushstack/eslint-config": "^4.
|
|
22
|
-
"@rushstack/heft": "^1.
|
|
23
|
-
"@rushstack/heft-lint-plugin": "^1.
|
|
24
|
-
"@rushstack/heft-typescript-plugin": "^1.1
|
|
18
|
+
"@rushstack/eslint-config": "^4.6.4",
|
|
19
|
+
"@rushstack/heft": "^1.2.6",
|
|
20
|
+
"@rushstack/heft-lint-plugin": "^1.2.6",
|
|
21
|
+
"@rushstack/heft-typescript-plugin": "^1.3.1",
|
|
25
22
|
"@types/node": "^24",
|
|
26
23
|
"eslint": "~9.39.2",
|
|
27
24
|
"tap": "^21.6.2",
|
|
@@ -29,11 +26,11 @@
|
|
|
29
26
|
},
|
|
30
27
|
"scripts": {
|
|
31
28
|
"build": "heft build --clean",
|
|
32
|
-
"test": "tap *.test.ts",
|
|
33
|
-
"test:examples": "node --test dist/examples/*.test.js",
|
|
34
|
-
"ci-unit": "npm run test;./test-examples-ci.sh",
|
|
35
|
-
"ci-examples": "npm run test:examples",
|
|
36
29
|
"ci-all": "npm run ci-unit && npm run ci-examples",
|
|
37
|
-
"ci-
|
|
30
|
+
"ci-examples": "npm run test:examples",
|
|
31
|
+
"ci-publish": "node ../../common/scripts/install-run-rush-pnpm.js publish --access public --provenance",
|
|
32
|
+
"ci-unit": "npm run test;./test-examples-ci.sh",
|
|
33
|
+
"test": "tap *.test.ts",
|
|
34
|
+
"test:examples": "node --test dist/examples/*.test.js"
|
|
38
35
|
}
|
|
39
36
|
}
|