@blocklet/meta 1.16.54-beta-20251024-030947-6f2889bf → 1.16.54-beta-20251027-105624-dfa978f8
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.
|
@@ -34,7 +34,7 @@ declare function deepWalk(tree: TreeNode<'children'>, cb: DeepWalkCallback, { ke
|
|
|
34
34
|
* @param {SectionType} section 目标 section
|
|
35
35
|
*/
|
|
36
36
|
declare function isMatchSection(sections: SectionType[] | SectionType, section: SectionType): boolean;
|
|
37
|
-
interface NavigationItem {
|
|
37
|
+
export interface NavigationItem {
|
|
38
38
|
id: string;
|
|
39
39
|
role?: string;
|
|
40
40
|
section?: SectionType;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.54-beta-
|
|
6
|
+
"version": "1.16.54-beta-20251027-105624-dfa978f8",
|
|
7
7
|
"description": "Library to parse/validate/fix blocklet meta",
|
|
8
8
|
"homepage": "https://www.arcblock.io/docs/blocklet-spec",
|
|
9
9
|
"main": "./lib/index.js",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"verify": "npm run lint:fix && npm run coverage && npm run build",
|
|
16
16
|
"lint": "eslint src tests",
|
|
17
17
|
"lint:fix": "npm run lint -- --fix",
|
|
18
|
-
"test": "bun test",
|
|
19
|
-
"coverage": "bun test --coverage",
|
|
18
|
+
"test": "bun test --bail --timeout 30000",
|
|
19
|
+
"coverage": "bun test --bail --timeout 30000 --coverage",
|
|
20
20
|
"clean": "rm -fr lib",
|
|
21
21
|
"types": "ts-node tools/types.js && sed -i.bak 's/unknown/string/g' ./src/types/schema.ts && rm ./src/types/schema.ts.bak && prettier --write ./src/types/*.ts",
|
|
22
22
|
"prebuild": "npm run clean && npm run types",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"author": "wangshijun <wangshijun2020@gmail.com> (http://github.com/wangshijun)",
|
|
27
27
|
"license": "Apache-2.0",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@abtnode/constant": "1.16.54-beta-
|
|
30
|
-
"@abtnode/db-cache": "1.16.54-beta-
|
|
31
|
-
"@abtnode/docker-utils": "1.16.54-beta-
|
|
29
|
+
"@abtnode/constant": "1.16.54-beta-20251027-105624-dfa978f8",
|
|
30
|
+
"@abtnode/db-cache": "1.16.54-beta-20251027-105624-dfa978f8",
|
|
31
|
+
"@abtnode/docker-utils": "1.16.54-beta-20251027-105624-dfa978f8",
|
|
32
32
|
"@arcblock/did": "^1.26.3",
|
|
33
33
|
"@arcblock/did-ext": "^1.26.3",
|
|
34
34
|
"@arcblock/did-util": "^1.26.3",
|
|
35
35
|
"@arcblock/jwt": "^1.26.3",
|
|
36
|
-
"@blocklet/constant": "1.16.54-beta-
|
|
36
|
+
"@blocklet/constant": "1.16.54-beta-20251027-105624-dfa978f8",
|
|
37
37
|
"@ocap/asset": "^1.26.3",
|
|
38
38
|
"@ocap/mcrypto": "^1.26.3",
|
|
39
39
|
"@ocap/types": "^1.26.3",
|
|
@@ -65,7 +65,6 @@
|
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@arcblock/eslint-config-ts": "^0.3.3",
|
|
67
67
|
"@types/express": "^5.0.0",
|
|
68
|
-
"@types/jest": "^29.5.13",
|
|
69
68
|
"@types/joi": "^17.2.3",
|
|
70
69
|
"@types/js-yaml": "^4.0.9",
|
|
71
70
|
"@types/validate-npm-package-name": "^4.0.2",
|
|
@@ -77,12 +76,10 @@
|
|
|
77
76
|
"eslint": "^8.27.0",
|
|
78
77
|
"expand-tilde": "^2.0.2",
|
|
79
78
|
"express": "^4.18.2",
|
|
80
|
-
"jest": "^29.7.0",
|
|
81
79
|
"joi-to-typescript": "^4.14.0",
|
|
82
80
|
"prettier": "^3.3.2",
|
|
83
|
-
"ts-jest": "^29.2.5",
|
|
84
81
|
"ts-node": "^10.9.1",
|
|
85
82
|
"typescript": "^5.6.3"
|
|
86
83
|
},
|
|
87
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "03b0bb26807c6c427ca700f48566ecc913f1353e"
|
|
88
85
|
}
|