@blocklet/resolver 1.17.7-beta-20251230-041316-624cafaf → 1.17.7-beta-20260103-230139-51fc594d
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/index.js +9 -6
- package/package.json +8 -8
package/index.js
CHANGED
|
@@ -150,12 +150,15 @@ const parseComponents = async (component, context = {}, logger = console) => {
|
|
|
150
150
|
// parse engine components recursively
|
|
151
151
|
const engine = (0, engine_1.getBlockletEngine)(meta);
|
|
152
152
|
if (engine?.interpreter === 'blocklet') {
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
153
|
+
// @ts-ignore Static server is now part of the built-in engines
|
|
154
|
+
if (engine.source?.name !== constant_1.STATIC_SERVER_ENGINE_DID) {
|
|
155
|
+
await (0, exports.parseComponents)({
|
|
156
|
+
// @ts-ignore
|
|
157
|
+
meta: { components: [{ source: engine.source, required: true }] },
|
|
158
|
+
dependencies: [],
|
|
159
|
+
children: [],
|
|
160
|
+
}, { ancestors: [...ancestors, { meta }], dynamicComponents, continueOnError: context?.continueOnError });
|
|
161
|
+
}
|
|
159
162
|
}
|
|
160
163
|
// @ts-ignore
|
|
161
164
|
await (0, exports.parseComponents)(child, {
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.17.7-beta-
|
|
6
|
+
"version": "1.17.7-beta-20260103-230139-51fc594d",
|
|
7
7
|
"description": "Blocklet meta resolver",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"files": [
|
|
@@ -20,23 +20,23 @@
|
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@arcblock/did": "^1.27.16",
|
|
23
|
-
"@blocklet/constant": "1.17.7-beta-
|
|
24
|
-
"@blocklet/meta": "1.17.7-beta-
|
|
23
|
+
"@blocklet/constant": "1.17.7-beta-20260103-230139-51fc594d",
|
|
24
|
+
"@blocklet/meta": "1.17.7-beta-20260103-230139-51fc594d",
|
|
25
25
|
"lodash": "^4.17.21",
|
|
26
26
|
"lru-cache": "^11.0.2",
|
|
27
27
|
"semver": "^7.6.3",
|
|
28
28
|
"ufo": "^1.5.3"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@abtnode/db-cache": "1.17.7-beta-
|
|
32
|
-
"@abtnode/types": "1.17.7-beta-
|
|
31
|
+
"@abtnode/db-cache": "1.17.7-beta-20260103-230139-51fc594d",
|
|
32
|
+
"@abtnode/types": "1.17.7-beta-20260103-230139-51fc594d",
|
|
33
33
|
"@arcblock/eslint-config-ts": "^0.3.3",
|
|
34
34
|
"@types/node": "^22.7.5",
|
|
35
35
|
"@typescript-eslint/eslint-plugin": "^5.42.0",
|
|
36
36
|
"@typescript-eslint/parser": "^5.42.0",
|
|
37
|
+
"@typescript/native-preview": "^7.0.0-dev.20251230.1",
|
|
37
38
|
"eslint": "^8.57.0",
|
|
38
|
-
"prettier": "^3.3.2"
|
|
39
|
-
"typescript": "^5.6.3"
|
|
39
|
+
"prettier": "^3.3.2"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "fb908bd3cd022e1061fbf20328dbad8edd22409b"
|
|
42
42
|
}
|