@blocklet/meta 1.16.23-beta-f85576a6 → 1.16.23-beta-aeb9f5bd
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/lib/schema.js +2 -1
- package/lib/types/schema.d.ts +1 -0
- package/package.json +7 -7
package/lib/schema.js
CHANGED
|
@@ -643,7 +643,8 @@ const blockletMetaProps = {
|
|
|
643
643
|
.optional(),
|
|
644
644
|
navigation: Joi.boolean().default(true),
|
|
645
645
|
serverless: Joi.boolean().optional(),
|
|
646
|
-
component: Joi.boolean(),
|
|
646
|
+
component: Joi.boolean(),
|
|
647
|
+
sitemap: Joi.boolean().optional(), // Does this blocklet supports composable sitemap
|
|
647
648
|
}).default({}),
|
|
648
649
|
// Other contents to be included in the bundle
|
|
649
650
|
files: Joi.array().items(Joi.string().trim()).optional(),
|
package/lib/types/schema.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.23-beta-
|
|
6
|
+
"version": "1.16.23-beta-aeb9f5bd",
|
|
7
7
|
"description": "Library to parse/validate/fix blocklet meta",
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"typings": "./lib/index.d.ts",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
"author": "wangshijun <wangshijun2020@gmail.com> (http://github.com/wangshijun)",
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@abtnode/constant": "1.16.23-beta-
|
|
27
|
+
"@abtnode/constant": "1.16.23-beta-aeb9f5bd",
|
|
28
28
|
"@arcblock/did": "1.18.108",
|
|
29
29
|
"@arcblock/did-ext": "1.18.108",
|
|
30
30
|
"@arcblock/did-util": "1.18.108",
|
|
31
31
|
"@arcblock/jwt": "1.18.108",
|
|
32
|
-
"@blocklet/constant": "1.16.23-beta-
|
|
32
|
+
"@blocklet/constant": "1.16.23-beta-aeb9f5bd",
|
|
33
33
|
"@ocap/asset": "1.18.108",
|
|
34
34
|
"@ocap/mcrypto": "1.18.108",
|
|
35
35
|
"@ocap/types": "1.18.108",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@arcblock/eslint-config-ts": "^0.2.4",
|
|
62
62
|
"@types/express": "^4.17.14",
|
|
63
|
-
"@types/jest": "^29.
|
|
63
|
+
"@types/jest": "^29.5.11",
|
|
64
64
|
"@types/joi": "^17.2.3",
|
|
65
65
|
"@types/js-yaml": "^4.0.5",
|
|
66
66
|
"@types/validate-npm-package-name": "^4.0.0",
|
|
@@ -71,12 +71,12 @@
|
|
|
71
71
|
"eslint": "^8.27.0",
|
|
72
72
|
"expand-tilde": "^2.0.2",
|
|
73
73
|
"express": "^4.18.2",
|
|
74
|
-
"jest": "^
|
|
74
|
+
"jest": "^29.7.0",
|
|
75
75
|
"joi-to-typescript": "^4.0.7",
|
|
76
76
|
"prettier": "^2.7.1",
|
|
77
|
-
"ts-jest": "^
|
|
77
|
+
"ts-jest": "^29.1.1",
|
|
78
78
|
"ts-node": "^10.9.1",
|
|
79
79
|
"typescript": "^5.0.4"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "418cacd970d373aecc8706f8992e57369d394577"
|
|
82
82
|
}
|