@feasibleone/blong-test 1.3.0 → 1.4.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 +7 -0
- package/dist/package.json +4 -2
- package/package.json +42 -42
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.4.0](https://github.com/feasibleone/blong/compare/blong-test-v1.3.0...blong-test-v1.4.0) (2026-02-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add GitHub adapter with release management capabilities and update CI publish scripts ([bf01aef](https://github.com/feasibleone/blong/commit/bf01aef3d7028edaf6770321a5542bc2651665e0))
|
|
9
|
+
|
|
3
10
|
## [1.3.0](https://github.com/feasibleone/blong/compare/blong-test-v1.2.0...blong-test-v1.3.0) (2026-02-04)
|
|
4
11
|
|
|
5
12
|
|
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.4.0",
|
|
25
27
|
"dependencies": {},
|
|
26
28
|
"peerDependencies": {
|
|
27
29
|
"@feasibleone/blong": "^1.0.0"
|
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.4.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
|
+
}
|