@feasibleone/blong-test 1.3.0 → 1.5.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 +14 -0
- package/dist/adapter/testDispatch.js +7 -1
- package/dist/adapter/testDispatch.js.map +1 -1
- package/dist/package.json +4 -2
- package/dist/server.js +0 -5
- package/dist/server.js.map +1 -1
- package/package.json +42 -42
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.5.0](https://github.com/feasibleone/blong/compare/blong-test-v1.4.0...blong-test-v1.5.0) (2026-02-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* self-contained layers ([9b80e3a](https://github.com/feasibleone/blong/commit/9b80e3a1bfd1b6843ece5dba80b619444ec93c84))
|
|
9
|
+
|
|
10
|
+
## [1.4.0](https://github.com/feasibleone/blong/compare/blong-test-v1.3.0...blong-test-v1.4.0) (2026-02-14)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* add GitHub adapter with release management capabilities and update CI publish scripts ([bf01aef](https://github.com/feasibleone/blong/commit/bf01aef3d7028edaf6770321a5542bc2651665e0))
|
|
16
|
+
|
|
3
17
|
## [1.3.0](https://github.com/feasibleone/blong/compare/blong-test-v1.2.0...blong-test-v1.3.0) (2026-02-04)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import { orchestrator } from '@feasibleone/blong';
|
|
2
|
-
export default orchestrator(
|
|
2
|
+
export default orchestrator(blong => ({
|
|
3
3
|
extends: 'orchestrator.dispatch',
|
|
4
|
+
activation: {
|
|
5
|
+
default: {
|
|
6
|
+
namespace: ['test'],
|
|
7
|
+
imports: [/\.test$/],
|
|
8
|
+
},
|
|
9
|
+
},
|
|
4
10
|
}));
|
|
5
11
|
//# sourceMappingURL=testDispatch.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"testDispatch.js","sourceRoot":"","sources":["../../adapter/testDispatch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,oBAAoB,CAAC;AAEhD,eAAe,YAAY,CAAC,
|
|
1
|
+
{"version":3,"file":"testDispatch.js","sourceRoot":"","sources":["../../adapter/testDispatch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,oBAAoB,CAAC;AAEhD,eAAe,YAAY,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;IAClC,OAAO,EAAE,uBAAuB;IAChC,UAAU,EAAE;QACR,OAAO,EAAE;YACL,SAAS,EAAE,CAAC,MAAM,CAAC;YACnB,OAAO,EAAE,CAAC,SAAS,CAAC;SACvB;KACJ;CACJ,CAAC,CAAC,CAAC"}
|
package/dist/package.json
CHANGED
|
@@ -12,16 +12,18 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "heft build --clean",
|
|
14
14
|
"ci-unit": "true",
|
|
15
|
-
"ci-publish": "
|
|
15
|
+
"ci-publish": "node ../../common/scripts/install-run-rush-pnpm.js publish --access public --provenance"
|
|
16
16
|
},
|
|
17
17
|
"exports": {
|
|
18
18
|
"./server.js": "./dist/server.js",
|
|
19
|
+
"./server.ts": "./server.ts",
|
|
19
20
|
"./browser.js": "./dist/browser.js",
|
|
21
|
+
"./browser.ts": "./browser.ts",
|
|
20
22
|
"./dist/package.json": "./package.json",
|
|
21
23
|
"./package.json": "./package.json"
|
|
22
24
|
},
|
|
23
25
|
"type": "module",
|
|
24
|
-
"version": "1.
|
|
26
|
+
"version": "1.5.0",
|
|
25
27
|
"dependencies": {},
|
|
26
28
|
"peerDependencies": {
|
|
27
29
|
"@feasibleone/blong": "^1.0.0"
|
package/dist/server.js
CHANGED
|
@@ -5,7 +5,6 @@ export default realm(blong => ({
|
|
|
5
5
|
error: blong.type.Boolean(),
|
|
6
6
|
adapter: blong.type.Boolean(),
|
|
7
7
|
backend: blong.type.Boolean(),
|
|
8
|
-
test: blong.type.Object({}),
|
|
9
8
|
}),
|
|
10
9
|
children: ['./adapter'],
|
|
11
10
|
config: {
|
|
@@ -13,10 +12,6 @@ export default realm(blong => ({
|
|
|
13
12
|
error: true,
|
|
14
13
|
adapter: true,
|
|
15
14
|
backend: false,
|
|
16
|
-
testDispatch: {
|
|
17
|
-
namespace: ['test'],
|
|
18
|
-
imports: [/\.test$/],
|
|
19
|
-
},
|
|
20
15
|
},
|
|
21
16
|
dev: {},
|
|
22
17
|
},
|
package/dist/server.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.js","sourceRoot":"","sources":["../server.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,EAAC,MAAM,oBAAoB,CAAC;AAEzC,eAAe,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;IAC3B,GAAG,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG;IACpB,UAAU,EAAE,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC;QAC1B,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE;QAC3B,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE;QAC7B,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE;
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["../server.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,EAAC,MAAM,oBAAoB,CAAC;AAEzC,eAAe,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC,CAAC;IAC3B,GAAG,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG;IACpB,UAAU,EAAE,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC;QAC1B,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE;QAC3B,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE;QAC7B,OAAO,EAAE,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE;KAChC,CAAC;IACF,QAAQ,EAAE,CAAC,WAAW,CAAC;IACvB,MAAM,EAAE;QACJ,OAAO,EAAE;YACL,KAAK,EAAE,IAAI;YACX,OAAO,EAAE,IAAI;YACb,OAAO,EAAE,KAAK;SACjB;QACD,GAAG,EAAE,EAAE;KACV;CACJ,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
2
|
+
"name": "@feasibleone/blong-test",
|
|
3
|
+
"description": "Development and unit testing utilities for the Blong framework",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"blong",
|
|
6
|
+
"rad",
|
|
7
|
+
"framework"
|
|
8
|
+
],
|
|
9
|
+
"repository": {
|
|
10
|
+
"url": "git+https://github.com/feasibleone/blong.git"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
"./server.js": "./dist/server.js",
|
|
14
|
+
"./server.ts": "./server.ts",
|
|
15
|
+
"./browser.js": "./dist/browser.js",
|
|
16
|
+
"./browser.ts": "./browser.ts",
|
|
17
|
+
"./dist/package.json": "./package.json",
|
|
18
|
+
"./package.json": "./package.json"
|
|
19
|
+
},
|
|
20
|
+
"type": "module",
|
|
21
|
+
"version": "1.5.0",
|
|
22
|
+
"dependencies": {},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"@feasibleone/blong": "^1.0.0"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@feasibleone/blong": "^1.0.0",
|
|
28
|
+
"@rushstack/eslint-config": "^4.0.1",
|
|
29
|
+
"@rushstack/heft-lint-plugin": "^1.1.14",
|
|
30
|
+
"@rushstack/heft-typescript-plugin": "^1.1.11",
|
|
31
|
+
"@rushstack/heft": "^1.1.11",
|
|
32
|
+
"eslint": "~9.39.2",
|
|
33
|
+
"react-dom": "^18.3.1",
|
|
34
|
+
"react": "^18.3.1",
|
|
35
|
+
"tap": "^21.5.0",
|
|
36
|
+
"typescript": "^5.9.3"
|
|
37
|
+
},
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "heft build --clean",
|
|
40
|
+
"ci-unit": "true",
|
|
41
|
+
"ci-publish": "node ../../common/scripts/install-run-rush-pnpm.js publish --access public --provenance"
|
|
42
|
+
}
|
|
43
|
+
}
|